Add deprecation notice for $and, $or, $concat, $append.

This commit is contained in:
Christoffer Lerno
2024-08-10 21:25:13 +02:00
parent 8541e9535e
commit 05c5eaed48
3 changed files with 4 additions and 2 deletions

View File

@@ -159,7 +159,7 @@ macro atan2(x, y)
/**
* @require values::@is_int(x) || values::@is_float(x) "Expected an integer or floating point value"
* @require $and(@typekind(y) == ARRAY || @typekind(y) == VECTOR, y.len == 2)
* @require (@typekind(y) == ARRAY || @typekind(y) == VECTOR) &&& y.len == 2
* @require $assignable(x, $typeof(y[0]))
**/
macro sincos(x, y)