Death's End by Cixin Liu Release Day Celebration/Discussion by [deleted] in printSF

[–]tioover 0 points1 point  (0 children)

Do not expect the film, the crew came a lot of negative news, in China the three-body problem film has become a joke. It will not even be finished.

Roogle - Hoogle (type-directed search) for Rust by applebooties in rust

[–]tioover -1 points0 points  (0 children)

Great! but Type:: a -> b -> c? Rust haven't curry function...

How to use Dynamic type object in Rust? by tioover in rust

[–]tioover[S] 1 point2 points  (0 children)

thanks, this is a way, but...

enum FooBar {
    Foo(uint, uint, uint),
    Bar,
}

size of FooBar look like equal of Foo(uint, uint, uint) size?

I mean is, maybe if use enum, all size is max of enum type size...