module Processing::Core::Data::Conversion

Direct including types

Defined in:

processing/core/data/conversion.cr

Instance Method Summary

Instance Method Detail

def binary(value : Int, digits : Int32) : String #

[View source]
def binary(value : Int) : String #

[View source]
def boolean(value : String) : Bool #

[View source]
def byte(char : Char) : Byte #

[View source]
def byte(byte : Byte) : Byte #

[View source]
def byte(boolean : Bool) #

[View source]
def byte(float : Float32) : Byte #

[View source]
def byte(double : Float64) : Byte #

[View source]
def byte(int : Int) : Byte #

[View source]
def byte(color) : Byte #

[View source]
def char(boolean : Bool) : Char #

[View source]
def char(byte : Byte) : Char #

[View source]
def char(char : Char) : Char #

[View source]
def char(float : Float32) : Char #

[View source]
def char(double : Float64) : Char #

[View source]
def char(int : Int) : Char #

[View source]
def char(color) : Char #

[View source]
def float(int : Int) : Float32 #

[View source]
def float(string : String) : Float32 #

[View source]
def hex(byte : Byte, digits : Int32) : String #

[View source]
def hex(int : Int, digits : Int32) : String #

[View source]
def hex(char : Char, digits : Int32) : String #

[View source]
def hex(color, digits : Int32) : String #

[View source]
def hex(byte : Byte) : String #

[View source]
def hex(int : Int) : String #

[View source]
def hex(char : Char) : String #

[View source]
def hex(color) : String #

[View source]
def int(boolean : Bool) : Int32 #

[View source]
def int(byte : Byte) : Int32 #

[View source]
def int(char : Char) : Int32 #

[View source]
def int(float : Float) : Int32 #

[View source]
def int(int : Int) : Int #

[View source]
def int(color) : Int32 #

[View source]
def str(boolean : Bool) : String #

[View source]
def str(byte : Byte) : String #

[View source]
def str(char : Char) : String #

[View source]
def str(int : Int) : String #

[View source]
def str(float : Float) : String #

[View source]
def unbinary(string : String) : Int #

[View source]
def unhex(string : String) : Int #

[View source]