Sha256: aa1e02df1bcdbf814f83da60723b5f34ec91d69f783561676815624a44218560
Contents?: true
Size: 342 Bytes
Versions: 4
Compression:
Stored size: 342 Bytes
Contents
# encoding: utf-8 module QueryBuilder::CQL::Operators # Returns the CQL TOKEN() definition # # @example # fn = Operators[:cql_token] # # fn[:int] # # => "TOKEN(int)" # # @param [#to_s] type # # @return [String] # def self.cql_token(type) "TOKEN(#{type})" end end # module QueryBuilder::CQL::Operators
Version data entries
4 entries across 4 versions & 1 rubygems