Sha256: 6c8841788bd895c63555d53a72707e3b1d313ed6fe9817f8264a1b24a7d7f126
Contents?: true
Size: 633 Bytes
Versions: 18
Compression:
Stored size: 633 Bytes
Contents
module Frodo class Query class Criteria module LambdaOperators # Applies the `any` lambda operator to the given property # @param property [to_s] # @return [self] def any(property) set_function_and_argument(:any, property) end # Applies the `any` lambda operator to the given property # @param property [to_s] # @return [self] def all(property) set_function_and_argument(:all, property) end private def lambda_operator? [:any, :all].include?(function) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems