add ->? function to std
This commit is contained in:
parent
cddcdb1b3b
commit
34b9030612
3 changed files with 13 additions and 0 deletions
|
@ -354,6 +354,11 @@
|
||||||
-
|
-
|
||||||
|
|
||||||
|
|
||||||
|
### `->? ::: -> `
|
||||||
|
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
### `_float ::: -> `
|
### `_float ::: -> `
|
||||||
|
|
||||||
-
|
-
|
||||||
|
|
|
@ -404,6 +404,11 @@ over type definitions, to string processing.
|
||||||
Makes a reference to object
|
Makes a reference to object
|
||||||
|
|
||||||
|
|
||||||
|
### `->? ::: object -> reference`
|
||||||
|
|
||||||
|
Makes a reference to object
|
||||||
|
|
||||||
|
|
||||||
### `neg ::: a -> math(-a)`
|
### `neg ::: a -> math(-a)`
|
||||||
|
|
||||||
Returns the negative of a
|
Returns the negative of a
|
||||||
|
|
|
@ -192,6 +192,9 @@ func reference {
|
||||||
this =?
|
this =?
|
||||||
this
|
this
|
||||||
}
|
}
|
||||||
|
func ->? {
|
||||||
|
reference
|
||||||
|
}
|
||||||
|
|
||||||
func _string {
|
func _string {
|
||||||
def object =object
|
def object =object
|
||||||
|
|
Loading…
Add table
Reference in a new issue