Add method tm_format to class Tm.
#130
Open
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
TmClass
Tmprovides 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_formatThis p/r adds a method called
tm_formatto theTmclass 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.ValPriminOmake_builtin_sys.tm_object.My attempts to use
Omake_value_type.ValFunfailed because the statements associatedwith
ValFunget 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_typefor the method.