You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[raw_data](https://pkg.odin-lang.org/base/builtin/#raw_data) is a built-in procedure which returns the underlying data of a built-in data type as a [Multi-Pointer](#multi-pointers).
2670
2670
2671
2671
```odin
2672
-
raw_data([]$E) -> [^]E // slices
2673
-
raw_data([dynamic]$E) -> [^]E // dynamic arrays
2674
-
raw_data(^[$N]$E) -> [^]E // fixed array and enumerated arrays
2675
-
raw_data(^#simd[$N]$E) -> [^]E // simd vectors
2676
-
raw_data(string) -> [^]byte //
2672
+
raw_data([]$E) -> [^]E // slices
2673
+
raw_data([dynamic]$E) -> [^]E // dynamic arrays
2674
+
raw_data(^[$N]$E) -> [^]E // fixed array and enumerated arrays
0 commit comments