started docs

This commit is contained in:
udo
2021-12-30 03:07:41 +00:00
parent 4811047480
commit 2c2225c76f
36 changed files with 511 additions and 25 deletions
+12
View File
@@ -0,0 +1,12 @@
:sig
String nibble(String& haystack, String delim)
:params
haystack : string to be nibbled at
delim : delimiter
return value : string before first occurrence of 'delim'
:desc
Returns the part of 'haystack' before the first occurrence of 'delim', removing the corresponding part from 'haystack' (including 'delim'). If the substring 'delim' does not occurr in 'haystack', the entire string is returned and 'haystack' is set to an empty string.