struct Bool

Overview

Bool has only two possible values: true and false. They are constructed using these literals:

true  # A Bool that is true
false # A Bool that is false

See Bool literals in the language reference.

Defined in:

byte_serializer.cr
extentions.cr

Class Method Summary

Instance Method Summary

Instance methods inherited from class Object

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

Class Method Detail

def self.from_io(io : IO, format = nil) #

[View source]

Instance Method Detail

def <(other) #

[View source]
def <=(other) #

[View source]
def >(other) #

[View source]
def >=(other) #

[View source]
def to_io(io : IO, format = nil) #

[View source]