1 2 3 4 5 6 7 8 9 10 11 12
use super::TursoAllocExt; use crate::alloc::LinkedList; fn linked_list<T>() -> LinkedList<T> { std::collections::LinkedList::new() } impl<T> TursoAllocExt for LinkedList<T> { fn new() -> Self { linked_list() } }