PyInRs
A Rust type library that is as easy to use as Python built-in types.
1. Attribute
- Name: PyInRs.
- Language: Rust, requires version rustc >=
1.75.0. - Goal: Write a Rust type library that is as easy to use as Python built-in types.
- Module: List, Set, Dict, Int, Str, Tuple, Deque, Fraction
- Style: Follow Rust's official recommended style.
- Test: Using rstest for unit testing and ensure that all tests passed.
- Security: There is no
unsafecode block. - Document: Using
cargo doc --opento open documents. - Run: Using
cargo runto build and run all tests.
2. Feature
- Simple: Stay simple, stay young. While ensuring usability and robustness, try to be concise and easy to maintain and read.
- Friendly: Provides many convenient functions. For example,
Strclass provides replace, split, find and other operations like Python's str, andListclass andStrclass both support negative subscript like Python. - Robust: There are corresponding checks for the addition, deletion, modification, and inspection of containers. Checking will have an impact on performance, but this library is not pursuing performance, but simplicity, usability, and robustness.
- Elegance: With my careful design, it can be used as conveniently as Python's built-in types. Very Pythonic.
3. Usage
To use it, add the following lines to your Cargo.toml file:
[]
= "0"
There are a total of 8 classes (in plan), refer to the 8 commonly used classes in Python:
| Type in PyInRs | Type in Python | |
|---|---|---|
List<T> |
list |
√ |
Set<T> |
set |
√ |
Dict<K, V> |
dict |
|
Int |
int |
|
Str |
str |
√ |
Tuple<Ts...> |
tuple |
|
Deque<T> |
collections.deque |
√ |
Fraction |
fractions.Fraction |
√ |
Some simple examples:
use *;
// List index, supports negative subscript
from // 5
// List uniquify
from.uniquify // [1, 2, 3]
// Adding elements to Set
from.add // {1, 2, 3, 4, 5}
// Intersection of Sets, supports intersection, union, difference, and symmetric difference
from & from // {1, 3, 5}
// Str split
from.split // ["one", "two", "three"]
// Str join
from.join // "192.168.0.1"
// Deque push back, supports both back and front push, pop, and element reference
from.push_back // <1, 2, 3, 4, 5>
// Deque shifts to right (or left), very vivid!
from >>= 1 // <5, 1, 2, 3, 4>
// Fraction addition
from + from // 5/6
// Fraction modulo
from % from // 1/6