diff options
Diffstat (limited to 'Arrays are useful when you know the length will not change.md')
-rw-r--r-- | Arrays are useful when you know the length will not change.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Arrays are useful when you know the length will not change.md b/Arrays are useful when you know the length will not change.md new file mode 100644 index 0000000..574dd01 --- /dev/null +++ b/Arrays are useful when you know the length will not change.md @@ -0,0 +1,3 @@ +[[Rust]] + +Because they are more efficient than vectors, if you know ahead of time that the length of the array isn't going to change, for example the names of the months: use an array.
\ No newline at end of file |