Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions content/docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -2666,11 +2666,12 @@ Procedures (Runtime Level) (all square matrix procedures) in `core:math/linalg`:
[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).

```odin
raw_data([]$E) -> [^]E // slices
raw_data([dynamic]$E) -> [^]E // dynamic arrays
raw_data(^[$N]$E) -> [^]E // fixed array and enumerated arrays
raw_data(^#simd[$N]$E) -> [^]E // simd vectors
raw_data(string) -> [^]byte //
raw_data([]$E) -> [^]E // slices
raw_data([dynamic]$E) -> [^]E // dynamic arrays
raw_data(^[$N]$E) -> [^]E // fixed array and enumerated arrays
raw_data(^#simd[$N]$E) -> [^]E // simd vectors
raw_data(^matrix[$I, $J]$E) -> [^]E // matrices
raw_data(string) -> [^]byte //
```

## `using` statement
Expand Down