struct CryStorage::Column

Defined in:

table.cr

Constructors

Instance Method Summary

Instance methods inherited from class Object

tabulate(io)
tabulate
tabulate
, tap(&) tap

Constructor Detail

def self.new(name : String, data_type : CryStorage::DataType(Bool) | CryStorage::DataType(Int128) | CryStorage::DataType(Int16) | CryStorage::DataType(Int32) | CryStorage::DataType(Int64) | CryStorage::DataType(String) | CryStorage::DataType(UInt8), default : Slice(UInt8) | Nil, order : Int32, is_nilable : Bool, key : CryStorage::Column::Key | Nil) #

[View source]

Instance Method Detail

def ==(other) #
Description copied from struct Struct

Returns true if this struct is equal to other.

Both structs' instance vars are compared to each other. Thus, two structs are considered equal if each of their instance variables are equal. Subclasses should override this method to provide specific equality semantics.

struct Point
  def initialize(@x : Int32, @y : Int32)
  end
end

p1 = Point.new 1, 2
p2 = Point.new 1, 2
p3 = Point.new 3, 4

p1 == p2 # => true
p1 == p3 # => false

[View source]
def bool? #

[View source]
def data_type : DataType::Any #

[View source]
def default : Bytes | Nil #

[View source]
def name : String #

[View source]
def nilable? : Bool #

[View source]
def order : Int32 #

[View source]
def table : TableSchema | Nil #

[View source]
def table=(table : TableSchema | Nil) #

[View source]
def to_s(io) #

[View source]