-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add parse
extensions to Text
type.
#6330
Comments
Greg Travis reports a new STANDUP for today (2023-04-24): Progress: Ready for review It should be finished by 2023-04-25. Next Day: 6329 |
5 tasks
Greg Travis reports a new STANDUP for today (2023-04-25): Progress: Review It should be finished by 2023-04-25. Next Day: Resume 6329 |
github-project-automation
bot
moved this from 👁️ Code review
to 🟢 Accepted
in Issues Board
Apr 26, 2023
Akirathan
pushed a commit
that referenced
this issue
Apr 26, 2023
Procrat
added a commit
that referenced
this issue
Apr 27, 2023
* develop: Passing events to sub-widgets in List Editor and refactoring of the slider component. (#6433) Revert "Cloud/desktop mode switcher (#6308)" (#6444) Widgets integrated with graph nodes (#6347) Table Visualization and display text changes. (#6382) Skip redundant compilations (#6436) Add parse extensions to Text type. #6330 (#6404) Cloud/desktop mode switcher (#6308) Replace Table should_equal with should_equal_verbose (#6405) Rollback event handling changes for the mouse (#6396) Dashboard directory interactivity (#6279) Ability to change the execution environment between design and live. (#6341) Implementation of elements adding to List Editor and a lot of internal API (#6390) Drop method exported from WASM + removing leaks. (#6365) Turn null into UnexpectedExpression when Union type is incomplete (#6415)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently there are various "parse" methods on value types such as
JSON
,Date
,Integer
.As the component browser favours methods over statics we should expose these as extensions.
For example:
Text.parse_json self -> Json =
Text.parse_url self -> Url =
Text.parse_number self -> Number =
Text.parse_integer self radix:Integer -> Integer =
Text.parse_date self format:Text|Nothing=Nothing -> Date =
renamepattern
toformat
There are other parses to be included...
The text was updated successfully, but these errors were encountered: