-
Notifications
You must be signed in to change notification settings - Fork 0
Flxble.Templating: Builtins
cannorin edited this page Jan 15, 2019
·
2 revisions
Creates a new Date value.
def d = date.new {
year = 2019,
month = 1,
day = 1,
hour = 12,
minute = 34,
second = 56,
millisecond = 789
}The fields year, month, and day are required. The other fields are optional and will be 0 if omitted.
def t = timespan.new {
day = 1,
hour = 23,
minute = 45,
second = 6,
millisecond = 789
}All the fields are optional and will be 0 if omitted.