Hash :
d9a86a93
Author :
Thomas de Grivel
Date :
2025-05-19T14:00:52
doc: cow and F32-128
Cow is a copy on write data structure based on List.
You can call Cow.freeze to get a read-only value. Call it as many
times you want and each time a new writable Tag will be added to
the Cow.
ikc3> c = cow %{a: 1, b: 2}
cow %{a: 1,
b: 2}
Top : KC3 documentation
Previous : 1.08 Complex
Next : 1.10 F32
# 1.9 Cow
`Cow` is a copy on write data structure based on `List`.
You can call `Cow.freeze` to get a read-only value. Call it as many
times you want and each time a new writable `Tag` will be added to
the `Cow`.
## 1.9.1 Examples
```elixir
ikc3> c = cow %{a: 1, b: 2}
cow %{a: 1,
b: 2}
```
---
Top : [KC3 documentation](../)
Previous : [1.08 Complex](1.08_Complex)
Next : [1.10 F32](1.10_F32)