Skip to content
Merged
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
6 changes: 6 additions & 0 deletions doc/src/manual/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,12 @@ julia> twothreearr()
3
```

### Is a function that ends with `!` allowed to allocate?

Yes! A function name ending with `!` indicates that the function mutates at
least one of its arguments (typically the first argument). However, it may
still allocate a scratch space to expedite computation or produce that result.

## Types, type declarations, and constructors

### [What does "type-stable" mean?](@id man-type-stability)
Expand Down