Module: Xqsr3::Conversion::IntegerParser
- Defined in:
- lib/xqsr3/conversion/integer_parser.rb
Overview
+include-able module that provides Integer parsing
Class Method Summary collapse
-
.to_integer(arg, base = 0, **options, &block) ⇒ Object
Attempts to convert a variable to an integer, according to the given options and block.
Instance Method Summary collapse
-
#to_integer(base = 0, **options, &block) ⇒ Object
Instance form of ::Xqsr3::Conversion::IntegerParser.to_integer.
Class Method Details
.to_integer(arg, base = 0, **options, &block) ⇒ Object
Attempts to convert a variable to an integer, according to the given options and block
Signature
-
Parameters:
-
argThe argument to be converted (toFixnumorBignum) -
baseA value of 0, or between 2 and 36. Defaults to 0 -
optionsAn options hash, containing any of the following options -
blockAn optional caller-supplied 4-parameter block - taking the exception,arg,base, andoptions- that will be invoked with theArgumentErrorexception, allowing the caller to take additional action. If the block returns then its return value will be returned to the caller
-
-
Options:
-
:defaultA default value to be used whenargisnilor cannot be converted by (the original) Kernel#Integer -
:nilReturnsnilifargisnilor cannot be converted by (the original) Kernel#Integer. Ignored if:defaultis specified
-
169 170 171 172 |
# File 'lib/xqsr3/conversion/integer_parser.rb', line 169 def self.to_integer arg, base = 0, **, &block IntegerParser_Helper_.to_integer_ arg, base, , &block end |
Instance Method Details
#to_integer(base = 0, **options, &block) ⇒ Object
Instance form of ::Xqsr3::Conversion::IntegerParser.to_integer
175 176 177 178 |
# File 'lib/xqsr3/conversion/integer_parser.rb', line 175 def to_integer base = 0, **, &block IntegerParser_Helper_.to_integer_ self, base, , &block end |