diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-22 13:13:47 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-22 13:13:47 -0400 |
| commit | aa58218da7a3ce3587a768f85323c3ce2212f6b2 (patch) | |
| tree | 18f49b3d00d946cb4efb1562397b255909670395 /docs/type_system/overload.md | |
| parent | c71cd186644570eb25c45ded7837b0e7aa54987a (diff) | |
add operators for bit type
Diffstat (limited to 'docs/type_system/overload.md')
| -rw-r--r-- | docs/type_system/overload.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/type_system/overload.md b/docs/type_system/overload.md index dff2327..116ce0e 100644 --- a/docs/type_system/overload.md +++ b/docs/type_system/overload.md @@ -13,7 +13,7 @@ Overload[FN; ...] ```text add : Overload[Fn[.native; I64; Tuple[I64.x; I64.y]; ...]; Fn[.native; F64; Tuple[F64.x; F64.y]; ...]; ...] -`log add `sync (1; 2) // Valid calls first -`log add `sync (1.1; 2.2) // Valid calls second -`log add `sync (1; 2.2) // Invalid no signature match +`log add `call (1; 2) // Valid calls first +`log add `call (1.1; 2.2) // Valid calls second +`log add `call (1; 2.2) // Invalid no signature match ``` |
