Min implements AggregatingFunction uses ResolvesFromChildren
FinalYes
Interfaces
Methods
- __construct() : mixed
- aggregate() : void
- children() : array<int, FunctionTree>
- Every operand of this node that is an expression, in constructor order.
- outputName() : string
- Decided in the constructor, never mutated.
- references() : array<int, Reference>
- resolved() : bool
- returns() : Type<string|int, mixed>
- Exactly the argument type, nullable - an all-null or ref-less group leaves no minimum
- value() : null|array<string|int, mixed>|bool|float|int|object|string
- withChildren() : static
- A copy of this node with $children in place of children(): same count, same order, same per-element narrowing. Never mutates $this.
Methods
__construct()
public
__construct(Reference $ref) : mixed
Parameters
- $ref : Reference
aggregate()
public
aggregate(Row $row, FlowContext $context) : void
Parameters
- $row : Row
- $context : FlowContext
children()
Every operand of this node that is an expression, in constructor order.
public
children() : array<int, FunctionTree>
Return values
array<int, FunctionTree>outputName()
Decided in the constructor, never mutated.
public
outputName() : string
Return values
stringreferences()
public
references() : array<int, Reference>
Return values
array<int, Reference>resolved()
public
resolved() : bool
Return values
boolreturns()
Exactly the argument type, nullable - an all-null or ref-less group leaves no minimum
public
returns() : Type<string|int, mixed>
Return values
Type<string|int, mixed>value()
public
value() : null|array<string|int, mixed>|bool|float|int|object|string
Return values
null|array<string|int, mixed>|bool|float|int|object|stringwithChildren()
A copy of this node with $children in place of children(): same count, same order, same per-element narrowing. Never mutates $this.
public
withChildren(array<int, FunctionTree> $children) : static
Parameters
- $children : array<int, FunctionTree>