Class: Lisp::Format::Directives::Hexadecimal
- Defined in:
- lib/carat/lisp-format.rb
Overview
Represents the ~X (Hexadecimal) directive.
Instance Attribute Summary
Attributes inherited from Directive
Instance Method Summary collapse
-
#initialize(args) ⇒ Hexadecimal
constructor
Set
radix
to 16.
Methods inherited from Number
Methods inherited from Directive
Constructor Details
#initialize(args) ⇒ Hexadecimal
Set radix
to 16.
713 714 715 |
# File 'lib/carat/lisp-format.rb', line 713 def initialize(args) super(*args << 16) end |