cochranblock 1.0.3

Zero-cloud website in a single Rust binary. 13MB on x86, 8.9MB on ARM. $10/month infrastructure. cargo install and run.
Documentation
//! Std method aliases (f300+). f374 = iter.

// All Rights Reserved — The Cochran Block, LLC
// Contributors: Mattbusel (XFactor), GotEmCoach, KOVA, Claude Opus 4.6, SuperNinja, Composer 1.5, Google Gemini Pro 3

/// f374 = iter
pub trait F374 {
    type Item;
    fn f374(&self) -> impl Iterator<Item = &Self::Item> + '_;
}

impl<T> F374 for [T] {
    type Item = T;
    fn f374(&self) -> impl Iterator<Item = &Self::Item> + '_ {
        self.iter()
    }
}

impl<T> F374 for Vec<T> {
    type Item = T;
    fn f374(&self) -> impl Iterator<Item = &Self::Item> + '_ {
        self.iter()
    }
}