2,875
edits
(Created page with "== Functions == === new === <syntaxhighlight lang="lua"> ---@param nextFunc fun(context: any, index: any):any, any ---@param index any ---@param contextFactory fun(): any ---@return Enumerator3 function Enumerator3.new(nextFunc, index, contextFactory) </syntaxhighlight> === create === <syntaxhighlight lang="lua"> ---@param obj any ---@return Enumerator3 function Enumerator3.create(obj) </syntaxhighlight> === ipairs === <syntaxhighlight lang="lua"> ---@return fun():tabl...") |
No edit summary |
||
Line 384: | Line 384: | ||
=== select === | === select === | ||
Alias for [[#map|Enumerator3.map]] | |||
=== selectMany === | === selectMany === | ||
Alias for [[#flatMap|Enumerator3.flatMap]] | |||
=== distinct === | === distinct === | ||
Alias for [[#unique|Enumerator3.unique]] | |||
=== except === | === except === | ||
Alias for [[#difference|Enumerator3.difference]] | |||
=== order === | === order === | ||
Alias for [[#sort|Enumerator3.sort]] | |||
=== orderDecending === | === orderDecending === | ||
Alias for [[#sortDescending|Enumerator3.sortDescending]] | |||
=== orderBy === | === orderBy === | ||
Alias for [[#sortBy|Enumerator3.sortBy]] | |||
=== orderByDecending === | === orderByDecending === | ||
Alias for [[#sortByDescending|Enumerator3.sortByDescending]] | |||
=== each === | === each === | ||
Alias for [[#foreach|Enumerator3.foreach]] | |||
=== for_each === | === for_each === | ||
Alias for [[#foreach|Enumerator3.foreach]] | |||
=== length === | === length === | ||
Alias for [[#count|Enumerator3.count]] | |||
=== lengthBy === | === lengthBy === | ||
Alias for [[#countBy|Enumerator3.countBy]] | |||
=== has === | === has === | ||
Alias for [[#contains|Enumerator3.contains]] | |||
=== fold === | === fold === | ||
Alias for [[#aggregate|Enumerator3.aggregate]] | |||
=== reduce === | === reduce === | ||
Alias for [[#aggregate|Enumerator3.aggregate]] | |||
edits