Semantic search

Jump to navigation Jump to search
namekindreferencetext
sumreducing barriersum-stepoperates on a stream of numbers and sums the numbers together to yield a result
tailfiltertail-step
toBulkSetterminalterminal-stepswill return all results in a weighted set and thus, duplicates preserved via weighting
toListterminalterminal-stepswill return all results in a list
toSetterminalterminal-stepswill return all results in a set and thus, duplicates removed
tryNextterminalterminal-stepswill return an Optional and thus, is a composite of hasNext()/next()
unionbranchrepeat-step
wherefilterwhere-stepfilters the current object based on either the object itself (Scope.local) or the path history of the object (Scope.global) (filter). This step is typically used in conjunction with either #match Step or select()-step, but can be used in isolation.