Add deprecation warnings for strconv.append_*

This commit is contained in:
Feoramund
2025-06-05 17:34:14 -04:00
parent 153f7af594
commit 2760f43ce7
2 changed files with 43 additions and 0 deletions
+5
View File
@@ -294,3 +294,8 @@ _power_of_two_table := [129]string{
"85070591730234615865843651857942052864",
"170141183460469231731687303715884105728",
}
@(deprecated="Use write instead")
append :: proc(dst: []byte, x: $T/Fixed($Backing, $Fraction_Width)) -> string {
return write(dst, x)
}