goish 0.20.7

Goish Rust — write Rust using Go idioms. Ports Go's standard library and syntax so Go programmers can write Rust code that reads and feels like Go.
Documentation
1
2
3
4
5
6
7
8
9
10
// container: namespace for container/list and container/heap.
//
//   Go                                  goish
//   ─────────────────────────────────   ──────────────────────────────────
//   "container/list"                    goish::container::list
//   "container/heap"                    goish::container::heap

pub mod heap;
pub mod list;
pub mod ring;