Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

String doc #143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
16 changes: 15 additions & 1 deletion core/docs/_docs/reference/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,21 @@ The list of operations available on a `Ptr[A]`:
* `!ptr = 5` - copy data into a pointer (requires `Send[A]` be defined)
* `Ptr.blank[A](n: Int)` - create a blank space in native memory that can store `n` consecutive instances of `A` (requires `LayoutOf[A]` be defined)
* `Ptr.copy[A](a: A)` - create a copy of `a` in native memory (requires `Send[A]`)
* `Ptr.asArray(size: Int)` - attempts to copy the data at the pointer into an Array of size `size` (requires `Receive[A]`). This is a very dangerous operation that can crash your program if you don't have all the data you need.
* `Ptr.asArray(size: Int)` - attempts to copy the data at the pointer into an Array of size `size` (requires `Receive[A]`). This is a very dangerous operation that can crash your prgram if you don't have all the data you need.

### String

To interact with `String`, you'll need a `Ptr` of `CChar`, and a `Scope`.

```scala
trait aCLib derives FSet:
def eval_string(code : Ptr[CChar]):Unit

Scope.confined {
val t = Ptr.copy("So Stringy")
cLib.eval_string(t);
}
```

## Structs

Expand Down