Procedures

ProcedureLocationProcedure TypeDescription
adjustl stringifor_string_t Interface

Builtin adjustl overloading.

adjustr stringifor_string_t Interface

Builtin adjustr overloading.

basedir stringifor_string_t Function

Return the base directory name of a string containing a file name.

Read more…
basename stringifor_string_t Function

Return the base file name of a string containing a file name.

Read more…
camelcase stringifor_string_t Function

Return a string with all words capitalized without spaces.

Read more…
capitalize stringifor_string_t Function

Return a string with its first character capitalized and the rest lowercased.

Read more…
character_concat_string stringifor_string_t Function

Concatenation with character (inverted).

Read more…
character_concat_string_string stringifor_string_t Function

Concatenation with character (inverted).

Read more…
character_eq_string stringifor_string_t Function

Equal to character (inverted) logical operator.

Read more…
character_ge_string stringifor_string_t Function

Greater equal than to character (inverted) logical operator.

Read more…
character_gt_string stringifor_string_t Function

Greater than to character (inverted) logical operator.

Read more…
character_le_string stringifor_string_t Function

Lower equal than to character (inverted) logical operator.

Read more…
character_lt_string stringifor_string_t Function

Lower than to character (inverted) logical operator.

Read more…
character_ne_string stringifor_string_t Function

Not equal to character (inverted) logical operator.

Read more…
chars stringifor_string_t Function

Return the raw characters data.

Read more…
colorize_str stringifor_string_t Function

Colorize and stylize strings, DEFAULT kind.

Read more…
count stringifor_string_t Interface

Builtin count overloading.

count_substring stringifor_string_t Function

Count the number of occurences of a substring into a string.

Read more…
decode stringifor_string_t Function

Return a string decoded accordingly the codec.

Read more…
encode stringifor_string_t Function

Return a string encoded accordingly the codec.

Read more…
end_with stringifor_string_t Function

Return true if a string ends with a specified suffix.

Read more…
escape stringifor_string_t Function

Escape backslashes (or custom escape character).

Read more…
extension stringifor_string_t Function

Return the extension of a string containing a file name.

Read more…
fill stringifor_string_t Function

Pad string on the left (or right) with zeros (or other char) to fill width.

Read more…
free stringifor_string_t Subroutine

Free dynamic memory.

Read more…
get_decimal_mode stringifor_string_t Subroutine

Get the DECIMAL changeable connection mode for the given unit.

Read more…
get_delimiter_mode stringifor_string_t Subroutine

Get the DELIM changeable connection mode for the given unit.

Read more…
get_next_non_blank_character_any_record stringifor_string_t Subroutine

Get the next non-blank character, advancing records if necessary.

get_next_non_blank_character_this_record stringifor_string_t Subroutine

Get the next non-blank character in the current record.

glob stringifor_string_t Interface

Overloading glob procedure.

Read more…
glob_character stringifor_string_t Subroutine

Glob search (character output), finds all the pathnames matching a given pattern according to the rules used by the Unix shell.

Read more…
glob_string stringifor_string_t Subroutine

Glob search (string output), finds all the pathnames matching a given pattern according to the rules used by the Unix shell.

Read more…
index stringifor_string_t Interface

Builtin index overloading.

insert_character stringifor_string_t Function

Insert substring into string at a specified position.

Read more…
insert_string stringifor_string_t Function

Insert substring into string at a specified position.

Read more…
is_allocated stringifor_string_t Function

Return true if the string is allocated.

Read more…
is_digit stringifor_string_t Function

Return true if all characters in the string are digits.

Read more…
is_integer stringifor_string_t Function

Return true if the string contains an integer.

Read more…
is_lower stringifor_string_t Function

Return true if all characters in the string are lowercase.

Read more…
is_number stringifor_string_t Function

Return true if the string contains a number (real or integer).

Read more…
is_real stringifor_string_t Function

Return true if the string contains a real.

Read more…
is_upper stringifor_string_t Function

Return true if all characters in the string are uppercase.

Read more…
join_characters stringifor_string_t Function

Return a string that is a join of an array of characters.

Read more…
join_strings stringifor_string_t Function

Return a string that is a join of an array of strings.

Read more…
len_trim stringifor_string_t Interface

Builtin len_trim overloading.

lower stringifor_string_t Function

Return a string with all lowercase characters.

Read more…
partition stringifor_string_t Function

Split string at separator and return the 3 parts (before, the separator and after).

Read more…
read_delimited stringifor_string_t Subroutine

Read a delimited string from a unit connected for formatted input.

Read more…
read_file stringifor Subroutine

Read a file as a single string stream.

Read more…
read_file stringifor_string_t Subroutine

Read a file as a single string stream.

Read more…
read_formatted stringifor_string_t Subroutine

Formatted input.

Read more…
read_line stringifor_string_t Subroutine

Read line (record) from a connected unit.

Read more…
read_lines stringifor Subroutine

Read lines (records) from a connected-formatted unit.

Read more…
read_lines stringifor_string_t Subroutine

Read (all) lines (records) from a connected unit as a single ascii stream.

Read more…
read_undelimited stringifor_string_t Subroutine

Read an undelimited string up until end of record or a character from a set of terminators is encountered.

Read more…
read_undelimited_listdirected stringifor_string_t Subroutine

Read an undelimited (no leading apostrophe or double quote) character value according to the rules for list directed input.

Read more…
read_unformatted stringifor_string_t Subroutine

Unformatted input.

Read more…
repeat stringifor_string_t Interface

Builtin repeat overloading.

replace stringifor_string_t Function

Return a string with all occurrences of substring old replaced by new.

Read more…
replace_one_occurrence stringifor_string_t Function

Return a string with the first occurrence of substring old replaced by new.

Read more…
reverse stringifor_string_t Function

Return a reversed string.

Read more…
sadjustl stringifor_string_t Function

Left adjust a string by removing leading spaces.

Read more…
sadjustl_character stringifor_string_t Function

Left adjust a string by removing leading spaces (character output).

Read more…
sadjustr stringifor_string_t Function

Right adjust a string by removing leading spaces.

Read more…
sadjustr_character stringifor_string_t Function

Right adjust a string by removing leading spaces (character output).

Read more…
scan stringifor_string_t Interface

Builtin scan overloading.

scount stringifor_string_t Function

Count the number of occurences of a substring into a string.

Read more…
search stringifor_string_t Function

Search for tagged record into string, return the first record found (if any) matching the tags.

Read more…
sindex_character_string stringifor_string_t Function

Return the position of the start of the first occurrence of string substring as a substring in string, counting from one. If substring is not present in string, zero is returned. If the back argument is present and true, the return value is the start of the last occurrence rather than the first.

Read more…
sindex_string_character stringifor_string_t Function

Return the position of the start of the first occurrence of string substring as a substring in string, counting from one. If substring is not present in string, zero is returned. If the back argument is present and true, the return value is the start of the last occurrence rather than the first.

Read more…
sindex_string_string stringifor_string_t Function

Return the position of the start of the first occurrence of string substring as a substring in string, counting from one. If substring is not present in string, zero is returned. If the back argument is present and true, the return value is the start of the last occurrence rather than the first.

Read more…
slen stringifor_string_t Function

Return the length of a string.

Read more…
slen_trim stringifor_string_t Function

Return the length of a string, ignoring any trailing blanks.

Read more…
slice stringifor_string_t Function

Return the raw characters data sliced.

Read more…
snakecase stringifor_string_t Function

Return a string with all words lowercase separated by “_”.

Read more…
split stringifor_string_t Subroutine

Return a list of substring in the string, using sep as the delimiter string.

Read more…
split_chunked stringifor_string_t Subroutine

Return a list of substring in the string, using sep as the delimiter string, chunked (memory-efficient) algorithm.

Read more…
srepeat_character_string stringifor_string_t Function

Concatenates several copies of an input string.

Read more…
srepeat_string_string stringifor_string_t Function

Concatenates several copies of an input string.

Read more…
sscan_character_string stringifor_string_t Function

Return the leftmost (if back is either absent or equals false, otherwise the rightmost) character of string that is in set.

Read more…
sscan_string_character stringifor_string_t Function

Return the leftmost (if back is either absent or equals false, otherwise the rightmost) character of string that is in set.

Read more…
sscan_string_string stringifor_string_t Function

Return the leftmost (if back is either absent or equals false, otherwise the rightmost) character of string that is in set.

Read more…
start_with stringifor_string_t Function

Return true if a string starts with a specified prefix.

Read more…
startcase stringifor_string_t Function

Return a string with all words capitalized, e.g. title case.

Read more…
strim stringifor_string_t Function

Remove trailing spaces.

Read more…
string_ stringifor_string_t Function

Return a string given a character input.

Read more…
string_assign_character stringifor_string_t Subroutine

Assignment operator from character input.

Read more…
string_assign_integer_I1P stringifor_string_t Subroutine

Assignment operator from integer input.

Read more…
string_assign_integer_I2P stringifor_string_t Subroutine

Assignment operator from integer input.

Read more…
string_assign_integer_I4P stringifor_string_t Subroutine

Assignment operator from integer input.

Read more…
string_assign_integer_I8P stringifor_string_t Subroutine

Assignment operator from integer input.

Read more…
string_assign_real_R16P stringifor_string_t Subroutine

Assignment operator from real input.

Read more…
string_assign_real_R4P stringifor_string_t Subroutine

Assignment operator from real input.

Read more…
string_assign_real_R8P stringifor_string_t Subroutine

Assignment operator from real input.

Read more…
string_assign_string stringifor_string_t Subroutine

Assignment operator from string input.

Read more…
string_concat_character stringifor_string_t Function

Concatenation with character.

Read more…
string_concat_character_string stringifor_string_t Function

Concatenation with character.

Read more…
string_concat_string stringifor_string_t Function

Concatenation with string.

Read more…
string_concat_string_string stringifor_string_t Function

Concatenation with string.

Read more…
string_eq_character stringifor_string_t Function

Equal to character logical operator.

Read more…
string_eq_string stringifor_string_t Function

Equal to string logical operator.

Read more…
string_ge_character stringifor_string_t Function

Greater equal than to character logical operator.

Read more…
string_ge_string stringifor_string_t Function

Greater equal than to string logical operator.

Read more…
string_gt_character stringifor_string_t Function

Greater than to character logical operator.

Read more…
string_gt_string stringifor_string_t Function

Greater than to string logical operator.

Read more…
string_le_character stringifor_string_t Function

Lower equal than to character logical operator.

Read more…
string_le_string stringifor_string_t Function

Lower equal than to string logical operator.

Read more…
string_lt_character stringifor_string_t Function

Lower than to character logical operator.

Read more…
string_lt_string stringifor_string_t Function

Lower than to string logical operator.

Read more…
string_ne_character stringifor_string_t Function

Not equal to character logical operator.

Read more…
string_ne_string stringifor_string_t Function

Not equal to string logical operator.

Read more…
strip stringifor_string_t Function

Return a copy of the string with the leading and trailing characters removed.

Read more…
strjoin stringifor_string_t Interface
strjoin_characters stringifor_string_t Function

Return a string that is a join of an array of characters.

Read more…
strjoin_characters_array stringifor_string_t Function

Return a string that is a join of columns or rows of an array of characters.

Read more…
strjoin_strings stringifor_string_t Function

Return a string that is a join of an array of strings.

Read more…
strjoin_strings_array stringifor_string_t Function

Return a string that is a join of columns or rows of an array of strings.

Read more…
sverify_character_string stringifor_string_t Function

Return the leftmost (if back is either absent or equals false, otherwise the rightmost) character of string that is not in set. If all characters of string are found in set, the result is zero.

Read more…
sverify_string_character stringifor_string_t Function

Return the leftmost (if back is either absent or equals false, otherwise the rightmost) character of string that is not in set. If all characters of string are found in set, the result is zero.

Read more…
sverify_string_string stringifor_string_t Function

Return the leftmost (if back is either absent or equals false, otherwise the rightmost) character of string that is not in set. If all characters of string are found in set, the result is zero.

Read more…
swapcase stringifor_string_t Function

Return a copy of the string with uppercase characters converted to lowercase and vice versa.

Read more…
tempname stringifor_string_t Function

Return a safe temporary name suitable for temporary file or directories.

Read more…
to_integer_I1P stringifor_string_t Function

Cast string to integer (I1P).

Read more…
to_integer_I2P stringifor_string_t Function

Cast string to integer (I2P).

Read more…
to_integer_I4P stringifor_string_t Function

Cast string to integer (I4P).

Read more…
to_integer_I8P stringifor_string_t Function

Cast string to integer (I8P).

Read more…
to_real_R16P stringifor_string_t Function

Cast string to real (R16P).

Read more…
to_real_R4P stringifor_string_t Function

Cast string to real (R4P).

Read more…
to_real_R8P stringifor_string_t Function

Cast string to real (R8P).

Read more…
trim stringifor_string_t Interface

Builtin trim overloading.

unescape stringifor_string_t Function

Unescape double backslashes (or custom escaped character).

Read more…
unique stringifor_string_t Function

Reduce to one (unique) multiple (sequential) occurrences of a substring into a string.

Read more…
upper stringifor_string_t Function

Return a string with all uppercase characters.

Read more…
verify stringifor_string_t Interface

Builtin verify overloading.

write_file stringifor Subroutine

Write a single string stream into file.

Read more…
write_file stringifor_string_t Subroutine

Write a single string stream into file.

Read more…
write_formatted stringifor_string_t Subroutine

Formatted output.

write_line stringifor_string_t Subroutine

Write line (record) to a connected unit.

Read more…
write_lines stringifor Subroutine

Write lines (records) to a connected-formatted unit.

Read more…
write_lines stringifor_string_t Subroutine

Write lines (records) to a connected unit.

Read more…
write_unformatted stringifor_string_t Subroutine

Unformatted output.

call~~graph~~CallGraph interface~adjustl adjustl proc~sadjustl_character sadjustl_character interface~adjustl->proc~sadjustl_character interface~adjustr adjustr proc~sadjustr_character sadjustr_character interface~adjustr->proc~sadjustr_character interface~count count proc~count_substring count_substring interface~count->proc~count_substring interface~glob glob proc~glob_character string%glob_character interface~glob->proc~glob_character proc~glob_string string%glob_string interface~glob->proc~glob_string interface~index index proc~sindex_character_string sindex_character_string interface~index->proc~sindex_character_string proc~sindex_string_character string%sindex_string_character interface~index->proc~sindex_string_character proc~sindex_string_string string%sindex_string_string interface~index->proc~sindex_string_string interface~len_trim len_trim proc~slen_trim string%slen_trim interface~len_trim->proc~slen_trim interface~repeat repeat proc~srepeat_string_string string%srepeat_string_string interface~repeat->proc~srepeat_string_string interface~scan scan proc~sscan_character_string sscan_character_string interface~scan->proc~sscan_character_string proc~sscan_string_character string%sscan_string_character interface~scan->proc~sscan_string_character proc~sscan_string_string string%sscan_string_string interface~scan->proc~sscan_string_string interface~strjoin strjoin proc~strjoin_characters string%strjoin_characters interface~strjoin->proc~strjoin_characters proc~strjoin_characters_array string%strjoin_characters_array interface~strjoin->proc~strjoin_characters_array proc~strjoin_strings string%strjoin_strings interface~strjoin->proc~strjoin_strings proc~strjoin_strings_array string%strjoin_strings_array interface~strjoin->proc~strjoin_strings_array interface~trim trim proc~strim string%strim interface~trim->proc~strim interface~verify verify proc~sverify_character_string sverify_character_string interface~verify->proc~sverify_character_string proc~sverify_string_character string%sverify_string_character interface~verify->proc~sverify_string_character proc~sverify_string_string string%sverify_string_string interface~verify->proc~sverify_string_string none~assignment(=) string%assignment(=) proc~string_assign_character string%string_assign_character none~assignment(=)->proc~string_assign_character proc~string_assign_integer_i1p string%string_assign_integer_I1P none~assignment(=)->proc~string_assign_integer_i1p proc~string_assign_integer_i2p string%string_assign_integer_I2P none~assignment(=)->proc~string_assign_integer_i2p proc~string_assign_integer_i4p string%string_assign_integer_I4P none~assignment(=)->proc~string_assign_integer_i4p proc~string_assign_integer_i8p string%string_assign_integer_I8P none~assignment(=)->proc~string_assign_integer_i8p proc~string_assign_real_r4p string%string_assign_real_R4P none~assignment(=)->proc~string_assign_real_r4p proc~string_assign_real_r8p string%string_assign_real_R8P none~assignment(=)->proc~string_assign_real_r8p proc~string_assign_string string%string_assign_string none~assignment(=)->proc~string_assign_string none~colorize string%colorize proc~colorize_str string%colorize_str none~colorize->proc~colorize_str none~glob string%glob none~glob->proc~glob_character none~glob->proc~glob_string none~index string%index none~index->proc~sindex_string_character none~index->proc~sindex_string_string none~insert string%insert proc~insert_character string%insert_character none~insert->proc~insert_character proc~insert_string string%insert_string none~insert->proc~insert_string none~join string%join proc~join_characters string%join_characters none~join->proc~join_characters proc~join_strings string%join_strings none~join->proc~join_strings none~operator(.cat.) string%operator(.cat.) proc~character_concat_string_string string%character_concat_string_string none~operator(.cat.)->proc~character_concat_string_string proc~string_concat_character_string string%string_concat_character_string none~operator(.cat.)->proc~string_concat_character_string proc~string_concat_string_string string%string_concat_string_string none~operator(.cat.)->proc~string_concat_string_string none~operator(==) string%operator(==) proc~character_eq_string string%character_eq_string none~operator(==)->proc~character_eq_string proc~string_eq_character string%string_eq_character none~operator(==)->proc~string_eq_character proc~string_eq_string string%string_eq_string none~operator(==)->proc~string_eq_string none~operator(SLASH=) string%operator(/=) proc~character_ne_string string%character_ne_string none~operator(SLASH=)->proc~character_ne_string proc~string_ne_character string%string_ne_character none~operator(SLASH=)->proc~string_ne_character proc~string_ne_string string%string_ne_string none~operator(SLASH=)->proc~string_ne_string none~operator(SLASHSLASH) string%operator(//) proc~character_concat_string string%character_concat_string none~operator(SLASHSLASH)->proc~character_concat_string proc~string_concat_character string%string_concat_character none~operator(SLASHSLASH)->proc~string_concat_character proc~string_concat_string string%string_concat_string none~operator(SLASHSLASH)->proc~string_concat_string none~operator(gt) string%operator(>) proc~character_gt_string string%character_gt_string none~operator(gt)->proc~character_gt_string proc~string_gt_character string%string_gt_character none~operator(gt)->proc~string_gt_character proc~string_gt_string string%string_gt_string none~operator(gt)->proc~string_gt_string none~operator(gt=) string%operator(>=) proc~character_ge_string string%character_ge_string none~operator(gt=)->proc~character_ge_string proc~string_ge_character string%string_ge_character none~operator(gt=)->proc~string_ge_character proc~string_ge_string string%string_ge_string none~operator(gt=)->proc~string_ge_string none~operator(lt) string%operator(<) proc~character_lt_string string%character_lt_string none~operator(lt)->proc~character_lt_string proc~string_lt_character string%string_lt_character none~operator(lt)->proc~string_lt_character proc~string_lt_string string%string_lt_string none~operator(lt)->proc~string_lt_string none~operator(lt=) string%operator(<=) proc~character_le_string string%character_le_string none~operator(lt=)->proc~character_le_string proc~string_le_character string%string_le_character none~operator(lt=)->proc~string_le_character proc~string_le_string string%string_le_string none~operator(lt=)->proc~string_le_string none~read(formatted) string%read(formatted) proc~read_formatted string%read_formatted none~read(formatted)->proc~read_formatted none~read(unformatted) string%read(unformatted) proc~read_unformatted string%read_unformatted none~read(unformatted)->proc~read_unformatted none~repeat string%repeat proc~srepeat_character_string string%srepeat_character_string none~repeat->proc~srepeat_character_string none~repeat->proc~srepeat_string_string none~scan string%scan none~scan->proc~sscan_string_character none~scan->proc~sscan_string_string none~strjoin string%strjoin none~strjoin->proc~strjoin_characters none~strjoin->proc~strjoin_characters_array none~strjoin->proc~strjoin_strings none~strjoin->proc~strjoin_strings_array none~to_number string%to_number proc~to_integer_i1p string%to_integer_I1P none~to_number->proc~to_integer_i1p proc~to_integer_i2p string%to_integer_I2P none~to_number->proc~to_integer_i2p proc~to_integer_i4p string%to_integer_I4P none~to_number->proc~to_integer_i4p proc~to_integer_i8p string%to_integer_I8P none~to_number->proc~to_integer_i8p proc~to_real_r4p string%to_real_R4P none~to_number->proc~to_real_r4p proc~to_real_r8p string%to_real_R8P none~to_number->proc~to_real_r8p none~verify string%verify none~verify->proc~sverify_string_character none~verify->proc~sverify_string_string none~write(formatted) string%write(formatted) proc~write_formatted string%write_formatted none~write(formatted)->proc~write_formatted none~write(unformatted) string%write(unformatted) proc~write_unformatted string%write_unformatted none~write(unformatted)->proc~write_unformatted proc~basedir string%basedir proc~basename string%basename proc~camelcase string%camelcase proc~camelcase->none~join proc~capitalize string%capitalize proc~camelcase->proc~capitalize proc~split string%split proc~camelcase->proc~split proc~lower string%lower proc~capitalize->proc~lower proc~chars string%chars proc~colorize_str->proc~chars colorize colorize proc~colorize_str->colorize proc~decode string%decode proc~strip string%strip proc~decode->proc~strip proc~upper string%upper proc~decode->proc~upper b64_decode b64_decode proc~decode->b64_decode proc~encode string%encode proc~encode->proc~upper b64_encode b64_encode proc~encode->b64_encode proc~end_with string%end_with proc~escape string%escape proc~extension string%extension proc~fill string%fill proc~free string%free proc~get_decimal_mode get_decimal_mode proc~get_delimiter_mode get_delimiter_mode proc~get_next_non_blank_character_any_record get_next_non_blank_character_any_record proc~get_next_non_blank_character_this_record get_next_non_blank_character_this_record proc~get_next_non_blank_character_any_record->proc~get_next_non_blank_character_this_record proc~glob_character->none~glob proc~glob_character->proc~chars proc~read_file~2 string%read_file proc~glob_string->proc~read_file~2 proc~glob_string->proc~split proc~tempname string%tempname proc~glob_string->proc~tempname proc~is_allocated string%is_allocated proc~is_digit string%is_digit proc~is_integer string%is_integer proc~is_lower string%is_lower proc~is_number string%is_number proc~is_number->proc~is_integer proc~is_real string%is_real proc~is_number->proc~is_real proc~is_upper string%is_upper proc~partition string%partition proc~read_delimited string%read_delimited proc~read_file read_file proc~read_file->proc~chars proc~read_lines read_lines proc~read_file->proc~read_lines proc~read_file->proc~upper proc~read_file~2->proc~chars proc~read_lines~2 string%read_lines proc~read_file~2->proc~read_lines~2 proc~read_file~2->proc~upper proc~read_formatted->proc~get_next_non_blank_character_any_record proc~read_formatted->proc~read_delimited proc~read_undelimited_listdirected string%read_undelimited_listdirected proc~read_formatted->proc~read_undelimited_listdirected proc~read_line string%read_line proc~read_line->proc~chars proc~read_line->proc~upper proc~read_lines->proc~chars proc~read_lines->proc~read_line proc~read_lines->proc~upper proc~read_lines~2->proc~read_line proc~read_undelimited string%read_undelimited proc~read_undelimited_listdirected->proc~get_decimal_mode proc~read_undelimited_listdirected->proc~read_undelimited proc~replace string%replace proc~replace_one_occurrence string%replace_one_occurrence proc~replace->proc~replace_one_occurrence proc~reverse string%reverse proc~sadjustl string%sadjustl proc~sadjustr string%sadjustr proc~scount string%scount proc~search string%search proc~slen string%slen proc~slice string%slice proc~snakecase string%snakecase proc~snakecase->none~join proc~snakecase->proc~lower proc~snakecase->proc~split proc~split->proc~partition proc~unique string%unique proc~split->proc~unique proc~split_chunked string%split_chunked proc~split_chunked->proc~end_with proc~split_chunked->proc~split proc~start_with string%start_with proc~split_chunked->proc~start_with proc~startcase string%startcase proc~startcase->none~join proc~startcase->proc~capitalize proc~startcase->proc~split proc~string_ string_ str str proc~string_assign_integer_i1p->str proc~string_assign_integer_i2p->str proc~string_assign_integer_i4p->str proc~string_assign_integer_i8p->str proc~string_assign_real_r16p string%string_assign_real_R16P proc~string_assign_real_r16p->str proc~string_assign_real_r4p->str proc~string_assign_real_r8p->str proc~strjoin_characters_array->proc~strjoin_characters proc~strjoin_strings_array->proc~strjoin_strings proc~swapcase string%swapcase proc~to_integer_i1p->proc~is_integer proc~to_integer_i2p->proc~is_integer proc~to_integer_i4p->proc~is_integer proc~to_integer_i8p->proc~is_integer proc~to_real_r16p string%to_real_R16P proc~to_real_r16p->proc~is_real proc~to_real_r4p->proc~is_real proc~to_real_r8p->proc~is_real proc~unescape string%unescape proc~unique->proc~replace proc~write_file write_file proc~write_file->proc~chars proc~write_file->proc~upper proc~write_lines write_lines proc~write_file->proc~write_lines proc~write_file~2 string%write_file proc~write_file~2->proc~chars proc~write_file~2->proc~upper proc~write_lines~2 string%write_lines proc~write_file~2->proc~write_lines~2 proc~write_line string%write_line proc~write_line->proc~chars proc~write_line->proc~end_with proc~write_line->proc~upper proc~write_lines->proc~write_line proc~write_lines~2->proc~split proc~write_lines~2->proc~write_line program~stringifor_test_csv_naive_parser stringifor_test_csv_naive_parser program~stringifor_test_csv_naive_parser->none~join program~stringifor_test_csv_naive_parser->none~to_number program~stringifor_test_csv_naive_parser->proc~read_file~2 program~stringifor_test_csv_naive_parser->proc~split program~stringifor_test_csv_naive_parser->proc~write_file program~stringifor_test_parse_large_csv stringifor_test_parse_large_csv program~stringifor_test_parse_large_csv->none~join program~stringifor_test_parse_large_csv->proc~read_file~2 program~stringifor_test_parse_large_csv->proc~split program~stringifor_test_parse_large_csv->proc~split_chunked program~volatile_doctest volatile_doctest program~volatile_doctest->proc~is_digit program~volatile_doctest~100 volatile_doctest program~volatile_doctest~100->interface~glob program~volatile_doctest~100->proc~tempname program~volatile_doctest~101 volatile_doctest program~volatile_doctest~101->none~to_number program~volatile_doctest~102 volatile_doctest program~volatile_doctest~102->proc~start_with program~volatile_doctest~103 volatile_doctest program~volatile_doctest~103->none~glob program~volatile_doctest~103->proc~tempname program~volatile_doctest~104 volatile_doctest program~volatile_doctest~104->none~insert program~volatile_doctest~105 volatile_doctest program~volatile_doctest~105->proc~end_with program~volatile_doctest~107 volatile_doctest program~volatile_doctest~107->proc~chars program~volatile_doctest~107->proc~read_file~2 program~volatile_doctest~107->proc~split program~volatile_doctest~108 volatile_doctest program~volatile_doctest~108->proc~strip program~volatile_doctest~109 volatile_doctest program~volatile_doctest~109->proc~reverse program~volatile_doctest~111 volatile_doctest program~volatile_doctest~111->proc~chars program~volatile_doctest~15 volatile_doctest program~volatile_doctest~15->proc~chars program~volatile_doctest~15->proc~read_lines~2 program~volatile_doctest~15->proc~split program~volatile_doctest~16 volatile_doctest program~volatile_doctest~16->proc~encode program~volatile_doctest~17 volatile_doctest program~volatile_doctest~17->none~join program~volatile_doctest~17->proc~read_file~2 program~volatile_doctest~17->proc~split program~volatile_doctest~17->proc~write_file program~volatile_doctest~18 volatile_doctest program~volatile_doctest~18->proc~camelcase program~volatile_doctest~19 volatile_doctest program~volatile_doctest~19->proc~tempname program~volatile_doctest~2 volatile_doctest program~volatile_doctest~2->proc~startcase program~volatile_doctest~20 volatile_doctest program~volatile_doctest~20->proc~lower program~volatile_doctest~21 volatile_doctest program~volatile_doctest~21->proc~chars program~volatile_doctest~22 volatile_doctest program~volatile_doctest~22->proc~extension program~volatile_doctest~23 volatile_doctest program~volatile_doctest~23->proc~split program~volatile_doctest~25 volatile_doctest program~volatile_doctest~25->none~to_number program~volatile_doctest~29 volatile_doctest program~volatile_doctest~29->proc~swapcase program~volatile_doctest~30 volatile_doctest program~volatile_doctest~30->none~to_number program~volatile_doctest~31 volatile_doctest program~volatile_doctest~31->proc~is_number program~volatile_doctest~32 volatile_doctest program~volatile_doctest~32->proc~decode program~volatile_doctest~34 volatile_doctest program~volatile_doctest~34->none~to_number program~volatile_doctest~35 volatile_doctest program~volatile_doctest~35->none~to_number program~volatile_doctest~4 volatile_doctest program~volatile_doctest~4->proc~is_real program~volatile_doctest~40 volatile_doctest program~volatile_doctest~40->proc~is_upper program~volatile_doctest~41 volatile_doctest program~volatile_doctest~41->proc~unique program~volatile_doctest~44 volatile_doctest program~volatile_doctest~44->none~join program~volatile_doctest~44->proc~read_file~2 program~volatile_doctest~44->proc~split program~volatile_doctest~44->proc~write_file~2 program~volatile_doctest~46 volatile_doctest program~volatile_doctest~46->none~insert program~volatile_doctest~49 volatile_doctest program~volatile_doctest~49->none~to_number program~volatile_doctest~50 volatile_doctest program~volatile_doctest~50->proc~chars program~volatile_doctest~51 volatile_doctest program~volatile_doctest~51->none~to_number program~volatile_doctest~52 volatile_doctest program~volatile_doctest~52->none~to_number program~volatile_doctest~54 volatile_doctest program~volatile_doctest~54->proc~chars program~volatile_doctest~54->proc~read_file program~volatile_doctest~57 volatile_doctest program~volatile_doctest~57->none~join program~volatile_doctest~6 volatile_doctest program~volatile_doctest~6->proc~upper program~volatile_doctest~60 volatile_doctest program~volatile_doctest~60->proc~is_integer program~volatile_doctest~61 volatile_doctest program~volatile_doctest~61->none~join program~volatile_doctest~62 volatile_doctest program~volatile_doctest~62->proc~replace program~volatile_doctest~63 volatile_doctest program~volatile_doctest~63->proc~escape program~volatile_doctest~64 volatile_doctest program~volatile_doctest~64->none~to_number program~volatile_doctest~66 volatile_doctest program~volatile_doctest~66->proc~unescape program~volatile_doctest~68 volatile_doctest program~volatile_doctest~68->proc~chars program~volatile_doctest~69 volatile_doctest program~volatile_doctest~69->proc~search program~volatile_doctest~7 volatile_doctest program~volatile_doctest~7->proc~fill program~volatile_doctest~71 volatile_doctest program~volatile_doctest~71->none~to_number program~volatile_doctest~72 volatile_doctest program~volatile_doctest~72->proc~chars program~volatile_doctest~74 volatile_doctest program~volatile_doctest~74->none~to_number program~volatile_doctest~75 volatile_doctest program~volatile_doctest~75->proc~split_chunked program~volatile_doctest~76 volatile_doctest program~volatile_doctest~76->none~to_number program~volatile_doctest~79 volatile_doctest program~volatile_doctest~79->none~to_number program~volatile_doctest~80 volatile_doctest program~volatile_doctest~80->proc~is_allocated program~volatile_doctest~81 volatile_doctest program~volatile_doctest~81->proc~capitalize program~volatile_doctest~82 volatile_doctest program~volatile_doctest~82->none~glob program~volatile_doctest~82->proc~tempname program~volatile_doctest~83 volatile_doctest program~volatile_doctest~83->none~to_number program~volatile_doctest~84 volatile_doctest program~volatile_doctest~84->proc~is_lower program~volatile_doctest~87 volatile_doctest program~volatile_doctest~87->proc~chars program~volatile_doctest~87->proc~read_line program~volatile_doctest~88 volatile_doctest program~volatile_doctest~88->proc~basename program~volatile_doctest~90 volatile_doctest program~volatile_doctest~90->none~colorize program~volatile_doctest~92 volatile_doctest program~volatile_doctest~92->proc~partition program~volatile_doctest~93 volatile_doctest program~volatile_doctest~93->proc~is_allocated program~volatile_doctest~94 volatile_doctest program~volatile_doctest~94->proc~chars program~volatile_doctest~96 volatile_doctest program~volatile_doctest~96->proc~slice program~volatile_doctest~98 volatile_doctest program~volatile_doctest~98->proc~snakecase program~volatile_doctest~99 volatile_doctest program~volatile_doctest~99->proc~basedir
Help