module Cassie::Statements::Statement::TypeHinting
Public Instance Methods
type_hints()
click to toggle source
The type hints for this object's statement Defaults to {.type_hints} if none are set on the object @return [Array, Hash] hints to use for value serialization. Array for positional arguments, Hash for named arguments.
# File lib/cassie/statements/statement/type_hinting.rb, line 37 def type_hints return @type_hints if defined?(@type_hints) self.class.type_hints end