Skip to content

Instantly share code, notes, and snippets.

View burjui's full-sized avatar

Artem Borisovskiy burjui

  • Russia, Kaliningrad
View GitHub Profile
@burjui
burjui / main.rs
Last active May 28, 2021 01:27
Vec and Option monads
/// https://gist.github.com/edmundsmith/855fcf0cb35dd467c29a9350481f0ecf
struct Forall;
trait Unplug {
type F;
type A;
}
trait Plug<A> {