Some function(s) in Julia ends with an exclamation point e.g. pop!
, sort!
etc.
Asked
Active
Viewed 1,217 times
3

Satish Gaurav
- 161
- 1
- 5
1 Answers
5
By convention, function names ending with an exclamation point (!
) modify their arguments. Some functions have both modifying (e.g., sort!
) and non-modifying (sort
) versions.

Satish Gaurav
- 161
- 1
- 5