mirror of
https://github.com/darkicewolf50/RustBrock.git
synced 2025-06-15 13:04:18 -06:00
started ch8.2
This commit is contained in:
parent
1624bbb975
commit
583c294453
5
.obsidian/workspace.json
vendored
5
.obsidian/workspace.json
vendored
@ -27,12 +27,12 @@
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Vector.md",
|
||||
"file": "String.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Vector"
|
||||
"title": "String"
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -195,6 +195,7 @@
|
||||
"active": "b80f5219fa24358f",
|
||||
"lastOpenFiles": [
|
||||
"Collection of Common Data Structs.md",
|
||||
"String.md",
|
||||
"Vector.md",
|
||||
"data_types.md",
|
||||
"Modules and Use.md",
|
||||
|
10
String.md
Normal file
10
String.md
Normal file
@ -0,0 +1,10 @@
|
||||
# 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?
|
Loading…
x
Reference in New Issue
Block a user