MCPcopy Create free account
hub / github.com/SharpCoder/teensycore / StringBuffer

Interface StringBuffer

src/system/strings.rs:6–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4pub type String = Vector::<u8>;
5
6pub trait StringBuffer {
7 fn index_of(&self, target: String) -> Option<usize>;
8 fn contains(&self, target: String) -> bool;
9 fn split(&mut self, separator: u8) -> Vector::<String>;
10}
11
12impl String {
13 pub fn push_node(&mut self, node: *mut Node<u8>) {

Callers

nothing calls this directly

Implementers 1

strings.rssrc/system/strings.rs

Calls

no outgoing calls

Tested by

no test coverage detected