Hash :
553ada9d
Author :
Jeremy JEANNE
Date :
2025-03-31T16:01:54
Callable , Ptr types in the doc
In KC3 there should be no use for Ptr type but it’s here to stay
compatible with C’s void * type.
You can cast from and to a pointer but be careful about correctly chaining casts from the same type to the same type.
The only parsable pointer is the NULL pointer :
ikc3> (Ptr) 0
(Ptr) 0
# 1.19 Ptr
In KC3 there should be no use for Ptr type but it's here to stay
compatible with C's `void *` type.
You can cast from and to a pointer but be careful about correctly
chaining casts from the same type to the same type.
The only parsable pointer is the NULL pointer :
```elixir
ikc3> (Ptr) 0
(Ptr) 0
```