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.

Included Modules

Defined in:

ext/bool.cr

Class Method Summary

Instance Method Summary

Instance methods inherited from module Orma::ToSql

sql_eq_operator(io : IO) sql_eq_operator, to_sql_insert_value(io : IO) to_sql_insert_value, to_sql_update_value(io : IO) to_sql_update_value, to_sql_value(io : IO) to_sql_value, to_sql_where_condition(io : IO) to_sql_where_condition

Class Method Detail

def self.from_http_param(str) #

[View source]

Instance Method Detail

def to_sql_value(io : IO) #

[View source]