algori 0.13.0

Rust Algorithms
Documentation
// Copyright 2024 Barrensea. Licensed under GPL-2

// no_std
#![cfg_attr(feature = "no_std", no_std)]

/// Algori
/// This is a algorithms Library

/// Sortion Algorithms
pub mod sorting;

/// Structures
pub mod structure;

/// Searching
pub mod searching;

/// Math
pub mod math;

/// Tools
pub mod tools;

/// String
pub mod string;