The "Unknown:"s below indicate that an entry is incomplete.
See the various entries for C#2
See the various entries for C#
(a, b) => ... | anonymous function |
Unknown:
serialize (marshalling)
unserialize (un-marshalling)
foreach (v in l) ... | for each element do something |
new[] { a, b, c } | list constructor |
new List<t> { a, b, c} | list constructor |
Unknown:
list concatenation
list flattening
adding an element at the beginning (list cons)
adding an element at index
adding an element at the end
first element
all but the first element
last element
get the first element and remove it
get the last element and remove it
transform a list (or bag) in another one
transform two lists in parallel
find an element
keep elements
is an element in the list
is the predicate true for an element
is the predicate true for every element
smallest / biggest element
iterate with index
remove duplicates
f(... f(f(init, e1), e2) ..., en)
Unknown:
dictionary (merge)
range
Unknown:
random (seed the pseudo random generator)