Semantic search

Jump to navigation Jump to search

|- |sum |reducing barrier |sum-step | |operates on a stream of numbers and sums the numbers together to yield a result |-|- |tail |filter |tail-step | | |-|- |toBulkSet |terminal |terminal-steps | |will return all results in a weighted set and thus, duplicates preserved via weighting |-|- |toList |terminal |terminal-steps | |will return all results in a list |-|- |toSet |terminal |terminal-steps | |will return all results in a set and thus, duplicates removed |-|- |tryNext |terminal |terminal-steps | |will return an Optional and thus, is a composite of hasNext()/next() |-|- |union |branch |repeat-step | | |-|- |where |filter |where-step | |filters 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. |-