Ilya Sher
Ilya Sher
The documentation at https://murex.rocks/docs/commands/test.html Is making hard to do https://github.com/ngs-lang/ngs/issues/494 ("Scan Murex test facility for ideas")
There are situations where it is known that the value is integer and we would like to check it against a pattern, like in `ok:HERE my_command` (checks exit code). This...
exception to the rule: if the file ends with `ns { ... }`
Use case: Instead of (the common case of optional command line argument that should be preceded by a switch: ``` if myfilter { $(myprog --filter $myfilter) } else { $(myprog)...
https://en.wikipedia.org/wiki/Safe_navigation_operator Maybe: `?` postfix operator will evaluate to `Enull` type ("expected null") and all the rest will act accordingly, instead of having several operators such as `?.` (field access), `?[]`...
* Should guard be a function? * Should guard follow the value/pattern parameters style?
Source of the problem: * `add_custom_target(man ALL WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doc COMMAND make man DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/doc/*.1.md)` * `install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/doc/ DESTINATION man/man1 FILES_MATCHING PATTERN "*.1")` Reproduce: ``` cd build cmake .. -G Ninja...
Currently `my_arr.my_field = v` will assign `v` to all `my_field` fields in each of the elements of `my_arr`. This is a design bug. It's not symmetric with `my_arr.my_field` which returns...
`if m = p.attrs().doc[''][0] ~ /Represents a (\w+)/` - has `m[1]` but it doesn't if using `=~`.