febits 0.1.3

A library containing small utilities to help with certain tasks to make things easier. Primarily the tools will consist of ways to manipulate primitives and other data types.
Documentation
  • Coverage
  • 66.67%
    8 out of 12 items documented7 out of 7 items with examples
  • Size
  • Source code size: 12.06 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 209.45 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Muddanak

febits

A Rust library containing various features and tools to help make certain tasks easier

These functions were pulled from other projects being worked on for use later in on future projects, consolidating code into one library.


A library containing tools to help with certain tasks to make things easier. Primarily the tools will consist of ways to manipulate primitives and other data types.

prim_u32 -> u32_to_u16: Split a [u32] into a tuple of ([u16], [u16])

prim_str -> find_str_exact: Find an exact [&str] in another [&str] -> find_str: Find any [&str] in another [&str]

string_fe -> bytes_to_hex_string: Hex-encodes [u8] into a [String] -> index_hex_string_in_hex_string: Finds a Hex-encoded [String] inside another Hex-encoded [String] -> index_string_in_u8: Finds a &[String] inside a set of [u8]

vectors -> sort_vec_floats_f32: Sorts a [Vec<f32>] into smallest -> biggest order