| 263 | |
| 264 | |
| 265 | value byteDataSize(value byteData) |
| 266 | { |
| 267 | CffiBytes bytes = getByteData(byteData); |
| 268 | if (bytes.data==0) |
| 269 | return alloc_null(); |
| 270 | return alloc_int(bytes.length); |
| 271 | } |
| 272 | DEFINE_PRIM(byteDataSize, 1); |
| 273 | |
| 274 |
nothing calls this directly
no test coverage detected