Class: Sass::Script::Value::Bool
- Inherits:
-
Base
- Object
- Base
- Sass::Script::Value::Bool
- Defined in:
- .ruby-sass/lib/sass/script/value/bool.rb
Overview
A SassScript object representing a boolean (true or false) value.
Constant Summary
- TRUE =
The true value in SassScript.
This is assigned before new is overridden below so that we use the default implementation.
new(true)
- FALSE =
The false value in SassScript.
This is assigned before new is overridden below so that we use the default implementation.
new(false)
Instance Attribute Summary (collapse)
-
#value ⇒ Boolean
(also: #to_bool)
readonly
The Ruby value of the boolean.
Attributes inherited from Base
Class Method Summary (collapse)
-
.new(value) ⇒ Bool
We override object creation so that users of the core API will not need to know that booleans are specific constants.
Instance Method Summary (collapse)
-
#to_s(opts = {}) ⇒ String
(also: #to_sass)
“true” or “false”.
Methods inherited from Base
#==, #assert_int!, #bracketed, #div, #eq, #eql?, #hash, #initialize, #inspect, #minus, #neq, #null?, #plus, #separator, #single_eq, #to_a, #to_h, #to_i, #unary_div, #unary_minus, #unary_not, #unary_plus, #with_contents
Constructor Details
This class inherits a constructor from Sass::Script::Value::Base
Constructor Details
This class inherits a constructor from Sass::Script::Value::Base
Instance Attribute Details
#value ⇒ Boolean (readonly) Also known as: to_bool
The Ruby value of the boolean.
26 27 28 |
# File '.ruby-sass/lib/sass/script/value/bool.rb', line 26 def value @value end |
Class Method Details
Instance Method Details
#to_s(opts = {}) ⇒ String Also known as: to_sass
Returns “true” or “false”
30 31 32 |
# File '.ruby-sass/lib/sass/script/value/bool.rb', line 30 def to_s(opts = {}) @value.to_s end |