roc-lang / basic-webserver

A basic webserver in Roc

Home Page:https://roc-lang.github.io/basic-webserver/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unnecassarily large types in Datetime

bhansconnect opened this issue · comments

Some reason, we use I128 for each of the values in this struct:

DateTime : { year : I128, month : I128, day : I128, hours : I128, minutes : I128, seconds : I128 }

This feels exceptionally large for no reason. We should analyze what is required and minimize the waste here.