mirror of
https://github.com/darkicewolf50/RustBrock.git
synced 2025-07-07 03:27:13 -06:00
11 lines
463 B
Markdown
11 lines
463 B
Markdown
# String
|
|
String s are implemented as a collection bytes plus some methods o provide useful functionality when those bytes are interpreted as text.
|
|
|
|
Strings can do everything that a UTF-8 character can
|
|
|
|
These attached methods include creating, updating and reading.
|
|
|
|
Strings are different to other collections, namely how indexing into a ``String`` is complicated by the differences between how people and computers interpret ``String`` data
|
|
|
|
## What is a String?
|