Module: Typed::Strict

Defined in:
lib/typed.rb

Constant Summary collapse

String =
Typed.instance(::String)
Symbol =
Typed.instance(::Symbol)
Int =
Typed.instance(::Integer)
Float =
Typed.instance(::Float)
Date =
Typed.instance(::Date)
True =
Typed.value(true)
False =
Typed.value(false)
Boolean =
True | False
Time =
Typed.instance(::Time)
DateTime =
Typed.instance(::DateTime)