create structs lib, mimics tuple lib, but implements Tuple.

This allows for operator overloading. It will make it significantly easier to write code for Tuple objects.
This commit is contained in:
Jon Janzen
2021-01-23 20:13:34 -07:00
parent ea51c5785d
commit 334e2ef3ea
3 changed files with 339 additions and 0 deletions

10
structs/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "structs"
version = "0.1.0"
authors = ["Jon Janzen <jonjanzen@me.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
approx = "0.4"