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

Interface StringOps

src/system/str.rs:45–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45pub trait StringOps<T> {
46 fn split(&self, target: u8) -> Vector<Str>;
47 fn index_of(&self, target: &T) -> Option<usize>;
48 fn contains(&self, target: &T) -> bool;
49 fn reverse(&mut self) -> &mut Self;
50}
51
52/// A CharBlockNode is a block of characters allocated
53/// at one time. This allows us to be a bit more

Callers

nothing calls this directly

Implementers 1

str.rssrc/system/str.rs

Calls

no outgoing calls

Tested by

no test coverage detected