rust-lodash 0.1.0

A high-performance, type-safe Rust implementation of Lodash collection methods with zero-cost abstractions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*!

Utility modules for Lodash-RS.

This module contains utility functions, type conversions, and helper traits
used throughout the library.
*/

pub mod error;
pub mod type_conv;
pub mod async_support;

// Re-export commonly used items
pub use error::{LodashError, Result, IntoLodashError};
pub use type_conv::*;

#[cfg(feature = "async")]
pub use async_support::*;