DateTime - Mtax-Development/GML-OOP GitHub Wiki
Constructs a container representing date and time.
Destruction |
Elements |
Garbage Collection |
None |
Name |
Type |
Modifiable |
ID |
{int:datetime} |
No |
year |
{int} |
No |
month |
{int} |
No |
week |
{int} |
No |
day |
{int} |
No |
hour |
{int} |
No |
minute |
{int} |
No |
second |
{int} |
No |
Name |
Arguments |
Argument note |
New constructor |
||
From one array |
array {int[]} |
Array elements will be applied in the following order:[year, month?, day?, hour?, minute?, second?] |
From two arrays |
Array elements will be applied in the following order:[year, month, day], [hour, minute, second?] |
|
Wrapper |
datetime {real:datetime} |
|
Empty |
||
Constructor copy |
other {DateTime} |