class SmartCore::Initializer::TypeSystem::ThyTypes::Operation::Cast

@api private @since 0.1.0

Public Instance Methods

call(value) click to toggle source

@param value [Any] @return [void]

@raise [SmartCore::Initializer::TypeCastingUnsupportedError]

@api private @since 0.1.0

# File lib/smart_core/initializer/plugins/thy_types/thy_types/operation/cast.rb, line 14
def call(value)
  raise(
    SmartCore::Initializer::TypeCastingUnsupportedError,
    'ThyTypes type system has no support for type casting.'
  )
end