Value topic
Classes that represent Sass values. These are passed to and returned by
user-defined Callable
s that are passed to functions like
compileToResult()
.
Classes
- CalculationInterpolation
- A deprecated representation of a string injected into a SassCalculation using interpolation.
- CalculationOperation
- A binary operation that can appear in a SassCalculation.
- ColorChannel
- Metadata about a single channel in a known color space.
- ColorSpace
- A color space whose channel names and semantics Sass knows.
- GamutMapMethod
- Different algorithms that can be used to map an out-of-gamut Sass color into the gamut for its color space.
- InterpolationMethod
- The method by which two colors are interpolated to find a color in the middle.
- LinearChannel
- Metadata about a color channel with a linear (as opposed to polar) value.
- SassArgumentList
- A SassScript argument list.
- SassBoolean
- A SassScript boolean value.
- SassCalculation
- A SassScript calculation.
- SassColor
- A SassScript color.
- SassFunction
- A SassScript function reference.
- SassList
- A SassScript list.
- SassMap
- A SassScript map.
- SassMixin
- A SassScript mixin reference.
- SassNumber
- A SassScript number.
- SassString
- A SassScript string.
- Value
- A SassScript value.
Extensions
- SassApiValue on Value
-
Extension methods that are only visible through the
sass_api
package.
Constants
- sassFalse → const SassBoolean Value
-
The SassScript
false
value. - sassNull → const Value Value
-
The SassScript
null
value. - sassTrue → const SassBoolean Value
-
The SassScript
true
value.
Enums
- CalculationOperator
- An enumeration of possible operators for CalculationOperation.
- HueInterpolationMethod
- The method by which two hues are adjusted when interpolating between colors.
- ListSeparator
- An enum of list separator types.