## Binary ### := [ Precedence 100000 ]
Overload Description
<T> (a: @'T) := (b: 'T) -> () Assigns b to the value to which b is pointing
## N-ary ### ( ) [ Precedence 50 ]
Overload Description
<R> (f: () => 'R)() -> R Calls f with the provided arguments
<A1, R> (f: 'A1 => 'R)(a1: 'A1) -> R
<A1, A2, R> (f: ('A1, 'A2) => 'R)(a1: 'A1, a2: 'A2) -> R

Defined until length 30