The "Unknown:"s below indicate that an entry is incomplete.
See the various entries for Scheme
Unknown:
information about the current line and file
tokens (case-sensitivity (keywords, variable identifiers...))
comparison (returns 3 values (i.e. inferior, equal or superior))
force garbage collection
Unknown:
function called when a function is not defined (in dynamic languages)
runtime inspecting the caller information
function composition
identity function
Unknown:
loop (for each value in a numeric range, 1 increment (see also the entries about ranges))
loop (for each value in a numeric range, 1 decrement)
loop (for each value in a numeric range, free increment)
loop (for "a la C" (while + initialisation))
breaking control flow (returning a value)
breaking control flow (goto (unconditional jump))
breaking control flow (continue / break)
Unknown:
package scope
declare
import
Unknown:
strings (with interpolation of variables)
strings (end-of-line (without writing the real CR or LF character))
convert something to a string (see also string interpolation)
serialize (marshalling)
unserialize (un-marshalling)
duplicate n times
locate a substring
locate a substring (starting at the end)
unzip2 | 2 lists from a list of couples |
fold | f(... f(f(init, e1), e2) ..., en) |
fold-right | f(e1, f(e2, ... f(en, init) ...)) |
find | find an element |
any(1) | is the predicate true for an element |
every | is the predicate true for every element |
filter | keep elements (matching) |
filter! | keep elements (matching) |
zip | list of couples from 2 lists |
partition | partition a list: elements matching, elements non matching |
partition! | partition a list: elements matching, elements non matching |
delete-duplicates | remove duplicates |
delete-duplicates! | remove duplicates |
Unknown:
list flattening
adding an element at index
adding an element at the end
get the first element and remove it
get the last element and remove it
join a list of strings in a string using a glue string
iterate with index
Unknown:
tuple constructor
computable tuple (these are a kind of immutable lists playing a special role in parameter passing) (empty tuple)
computable tuple (these are a kind of immutable lists playing a special role in parameter passing) (1-uple)
computable tuple (these are a kind of immutable lists playing a special role in parameter passing) (using a tuple for a function call)
optional value (null value)
record (selector)
dictionary (constructor)
dictionary (access)
dictionary (has the key ?)
dictionary (remove by key)
dictionary (list of keys)
dictionary (list of values)
dictionary (merge)
range
Unknown:
random (random number)
random (seed the pseudo random generator)
logarithm (base 10)
bitwise operators