Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Previous Class
Tm
Class
Tm
provides all components of the "usual" broken-down date-time,but it is tedious to produce a nicely formatted date-time tag for example for
a subdirectory. The author of this pull request ended up writing a monstrosity like
this for a RFC-3339 formatted date-time:
New Method
tm_format
This p/r adds a method called
tm_format
to theTm
class thatworks like strftime(3) as specified by POSIX plus some GLibc extensions
minus all locale functionality. The above RFC-3339 example now boils
down to more or less
Implementation
I have attached the method as a
Omake_value_type.ValPrim
inOmake_builtin_sys.tm_object
.My attempts to use
Omake_value_type.ValFun
failed because the statements associatedwith
ValFun
get executed on object construction time; they are not delayed until the methodgets called. Maybe someone with a more profound insight into the IR can suggest a better
Omake_value_type
for the method.