The "Missing:"s below indicate that an entry is incomplete.
See the various entries for PHP
| == != | equality / inequality (deep) |
| === !== | equality / inequality (shallow) |
Missing:
tokens (what is the standard way for scrunching together multiple words)
breaking lines (useful when end-of-line and/or indentation has a special meaning)
comparison (min / max (binary or more))
force garbage collection
Missing:
function definition
function called when a function is not defined (in dynamic languages)
runtime inspecting the caller information
| try a catch (exn) ... | exception (catching) |
| throw new exception | exception (throwing) |
Missing:
loop (forever loop)
loop (do something until condition)
breaking control flow (goto (unconditional jump))
| clone $o | object cloning |
Missing:
method invocation (with no parameter)
manually call an object's destructor
get the type/class corresponding to an object/instance/value
inheritance
has the method
accessing parent method
Missing:
package scope
declare
import
Missing:
character "z"
strings (end-of-line (without writing the real CR or LF character))
multi-line
convert something to a string (see also string interpolation)
string equality & inequality
upper / lower case character
locate a substring
locate a substring (starting at the end)
Missing:
list flattening
list constructor
adding an element at index
first element
all but the first element
last element
smallest / biggest element
Missing:
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)
reference (pointer) (creation)
reference (pointer) (dereference)
optional value (null value)
optional value (value)
record (selector)
Missing:
numbers syntax (integers)
numbers syntax (integers in base 2, octal and hexadecimal)
numbers syntax (decimals)
addition / subtraction / multiplication / division
negation
random (random number)
random (seed the pseudo random generator)
operator priorities and associativities
trigonometry (inverse)
bitwise operators