Top Level Namespace
Defined in:
Method Summary
-
format(fmtString : String, *args) : IO
Formats
fmtString
with the given arguments using aRemiLib::Format::Formatter
, then prints the string to standard output. -
format(io : IO, fmtString : String, *args) : Nil
Formats
fmtString
with the given arguments using aRemiLib::Format::Formatter
, then writes the results toio
. -
formatStr(fmtString : String, *args) : String
Formats
fmtString
with the given arguments using aRemiLib::Format::Formatter
, then returns a new string with the formatted output.
Macro Summary
-
bitflag?(thing, flag)
A convenience macro that is the as doing
(thing & flag) != 0
, but slightly cleaner looking.
Method Detail
Formats fmtString
with the given arguments using a
RemiLib::Format::Formatter
, then prints the string to standard output. A
newline is not automatically appended to the end. This returns STDOUT
.
Formats fmtString
with the given arguments using a
RemiLib::Format::Formatter
, then writes the results to io
.
Formats fmtString
with the given arguments using a
RemiLib::Format::Formatter
, then returns a new string with the formatted
output. A newline is not automatically appended to the end.
Macro Detail
A convenience macro that is the as doing (thing & flag) != 0
, but slightly
cleaner looking.