mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
rust: add function pointers notes
This commit is contained in:
parent
4d8e7ccc16
commit
8bc64a02e9
1 changed files with 17 additions and 0 deletions
|
@ -1242,6 +1242,23 @@ This technique is mostly useful when passing a closure to a new thread to move t
|
|||
let closure = move |param| <expr>;
|
||||
```
|
||||
|
||||
## Function Pointers
|
||||
|
||||
**Function pointer** types, written using the `fn` keyword, refer to a function whose identity is not necessarily known at compile-time.
|
||||
They can be created via a coercion from both *function items* and *non-capturing closures*.
|
||||
|
||||
```rs
|
||||
fn add_one(x: usize) -> usize {
|
||||
x + 1
|
||||
}
|
||||
|
||||
let ptr: fn(usize) -> usize = add_one;
|
||||
assert_eq!(ptr(5), 6);
|
||||
|
||||
let clos: fn(usize) -> usize = |x| x + 5;
|
||||
assert_eq!(clos(5), 10);
|
||||
```
|
||||
|
||||
## Iterators
|
||||
|
||||
The *iterator pattern* allows to perform some task on a sequence of items in turn. An iterator is responsible for the logic of iterating over each item and determining when the sequence has finished.
|
||||
|
|
Loading…
Add table
Reference in a new issue