| Package | Description |
|---|---|
| com.google.template.soy.basicfunctions |
Plugin package for basic functions.
|
| com.google.template.soy.data |
Java representation of Soy data types.
|
| com.google.template.soy.data.restricted |
| Modifier and Type | Method and Description |
|---|---|
static IntegerData |
CeilingFunction.ceil(SoyValue arg)
Returns the smallest (closest to negative infinity) integer value that is greater than or equal
to the argument.
|
static IntegerData |
FloorFunction.floor(SoyValue arg)
Returns the largest (closest to positive infinity) integer value that is less than or equal to
the argument.
|
| Modifier and Type | Method and Description |
|---|---|
Iterable<IntegerData> |
SoyAbstractList.getItemKeys() |
| Modifier and Type | Field and Description |
|---|---|
static IntegerData |
IntegerData.MINUS_ONE
Static instance of IntegerData with value -1.
|
static IntegerData |
IntegerData.ONE
Static instance of IntegerData with value 1.
|
static IntegerData |
IntegerData.ZERO
Static instance of IntegerData with value 0.
|
| Modifier and Type | Method and Description |
|---|---|
static IntegerData |
IntegerData.forValue(long value)
Gets a IntegerData instance for the given value.
|