What are some mind blowing Rust tricks?
from little_ferris@programming.dev to rust@programming.dev on 16 Oct 05:52
https://programming.dev/post/20617271

If we were to create a Rust version of this page for Haskell, what cool programming techniques would you add to it?

#rust

threaded - newest

silasmariner@programming.dev on 16 Oct 07:01 next collapse

Rust isn’t really a language that lends itself to terse point-free functional idioms… The sort of examples I might want to share would probably require a bit more context, certainly more code. Like I think type guards and arena allocation are cool and useful tricks but I don’t think I could write a neat little example showing or motivating either

little_ferris@programming.dev on 16 Oct 07:49 collapse

Yeah I don’t mean just terse functional idioms. Any programming technique that blew your mind the first time you came across it would qualify.

silasmariner@programming.dev on 16 Oct 09:29 collapse

Type guards, then :) very cool, much compiler power, love it

little_ferris@programming.dev on 16 Oct 10:14 collapse

Do you mean RAII guards

rust-unofficial.github.io/patterns/…/RAII.html

Or match guards?

doc.rust-lang.org/rust-by-example/…/guard.html

naonintendois@programming.dev on 16 Oct 10:54 collapse

Maybe they’re referring to “where clauses”?

silasmariner@programming.dev on 16 Oct 13:34 collapse

Indeed I am. Forgot the name, lol, not worked with rust for a few months 😅

solrize@lemmy.world on 16 Oct 08:16 next collapse

I’d like to see a Rust solution to Tony Morris’s tic tac toe challenge:

blog.tmorris.net/posts/…/index.html

His rant about it is here:

blog.tmorris.net/…/understanding-practical-api-de…

I did a Haskell GADT solution some time back and it’s supposed to be doable in Java and in C++. Probably Rust too. I wonder about Ada.

LPThinker@lemmy.world on 16 Oct 11:34 next collapse

This could be done almost trivially using the typestate pattern: zerotomastery.io/blog/rust-typestate-patterns/.

solrize@lemmy.world on 16 Oct 20:53 collapse

Neat that looks interesting. There’s a similar Haskell idiom called session types. I have a bit of reservation about whether one can easily use Rust traits to mark out the permissible state sets that an operation can take, but that’s because I don’t know Rust at all. I do remember doing a hacky thing with TypeLits in Haskell to handle that. Basically you can have numbers in the type signatures and do some limited arithmetic with them at type level. I’d be interested to know if that is doable in Rust.

silasmariner@programming.dev on 16 Oct 22:04 collapse

That doesn’t look like a particularly difficult challenge? Like, it’s just an implementation game, move returns a data type that you write yourself

Edit: I suppose there’s life in that kind of ambiguous variation though

solrize@lemmy.world on 16 Oct 23:33 collapse

Well if there isn’t already a Rust version on github, it could be cool to add one. A few other languages are already there.

someacnt_@lemmy.world on 16 Oct 10:10 next collapse

The haskell examples look more like an arcane wizardry.

little_ferris@programming.dev on 16 Oct 10:12 next collapse

😂 Ikr!

zygo_histo_morpheus@programming.dev on 16 Oct 11:55 collapse

My favorite example of haskell arcane wizardry is löb. It’s mentioned in this list but not really done justice imo.

Ephera@lemmy.ml on 16 Oct 10:45 next collapse

A cool thing you can do, is to store values of all kinds of types in a big HashMap, basically by storing their TypeId and casting them to Box<dyn Any> (see std::any).
Then you can later retrieve those values by specifying the type (and optionally another ID for storing multiple values of the same type).

So, you can create an API which is used like this:

let value = MyType::new();
storage.insert(value);
let retrieved = storage.get::<MyType>();
assert_eq!(retrieved, value);

There’s various ECS storage libraries which also implement such an API. Depending on what you’re doing, you might prefer to use those rather than implementing it yourself, but it’s not too difficult to implement yourself.

SorteKanin@feddit.dk on 16 Oct 11:11 next collapse

There’s a crate for it too: anymap2

Buttons@programming.dev on 16 Oct 12:12 collapse

What if I specify the wrong type? let retrieved = storage.get::<SomeOtherType>();?

Is it a runtime error or a compile time error?

Buttons@programming.dev on 16 Oct 12:15 collapse

To answer my own question: I believe it’s a runtime error: doc.rust-lang.org/stable/std/any/trait.Any.html#m…

Ephera@lemmy.ml on 16 Oct 12:23 collapse

Well, you would determine the TypeId of SomeOtherType, then search for that as the key in your HashMap and get back a None, because no entry exists and then you’d hand that back to the user.
I guess, my little usage example should’ve included handling of an Option value…

So, it’s only a runtime error, if you decide to .unwrap() or similar.

SorteKanin@feddit.dk on 16 Oct 11:06 next collapse

Not exactly the same thing but this is still pretty funny. This is code that is technically 100% legal Rust but you should definitely never write such code 😅.

AsudoxDev@programming.dev on 16 Oct 11:57 next collapse

What madness caused this

SorteKanin@feddit.dk on 16 Oct 11:59 collapse

It’s a test for the compiler which ensures that these legal yet extremely weird expressions continue to compile as the compiler is updated. So there is a purpose to the madness but it does still look pretty funny.

nilloc@discuss.tchncs.de on 17 Oct 12:50 collapse

That’s make sense. We used to write some ridiculous tests too, but users still managed to find a way

fn union() {
    union union<'union> { union: &'union union<'union>, }
}

Is my favorite.

barsoap@lemm.ee on 16 Oct 17:43 next collapse

That makes complete sense. Ranges implement fmt::Debug, is a range, in particular the full range (all values) …= isn’t because the upper bound is missing but …=… ranges from the beginning to the… full range. Which doesn’t make sense semantically but you can debug print it so add a couple more nested calls and you get a punch card.

I totally didn’t need the Rust playground to figure that out.

EDIT: Oh, glossed over that: is only the full range if standing alone, it’s also an infix operator which is why you can add as many as you want (be careful with whitespace, though). … … … … … … … … … … is a valid Rust expression.

silasmariner@programming.dev on 16 Oct 21:02 collapse

This is excellent content

BB_C@programming.dev on 16 Oct 12:40 next collapse

Can’t think of anything.
The novelty must have worn off over time.
Or maybe my mind doesn’t get blown easily.

tuna@discuss.tchncs.de on 16 Oct 13:39 next collapse

Something i didnt know for a long time (even though its mentioned in the book pretty sure) is that enum discriminants work like functions

#[derive(Debug, PartialEq, Eq)]
enum Foo {
    Bar(i32),
}

let x: Vec<_> = [1, 2, 3]
    .into_iter()
    .map(Foo::Bar)
    .collect();
assert_eq!(
    x,
    vec![Foo::Bar(1), Foo::Bar(2), Foo::Bar(3)]
);

Not too crazy but its something that blew my mind when i first saw it

Ephera@lemmy.ml on 16 Oct 14:16 next collapse

This works with anything that one might call “named tuples”.

So, you can also define a struct like so and it’ll work:

struct Baz(i32);

On the other hand, if you define an enum variant with the normal struct syntax, it does not work:

enum Foo {
    ...
    Qux { something: i32 } //cannot omit braces
}
barsoap@lemm.ee on 16 Oct 15:54 collapse

Named function arguments would occasionally be nice to have instead of the single n-tuple they take now. Currently I’m more or less playing a game of "can I name my local variables such that rust-analyzer won’t display the argument name when I stick them into functions (because they’re called the same)).

Ephera@lemmy.ml on 16 Oct 17:38 collapse

Yeah, I do miss those, too, although I’ve noticed that I’m becoming ever more consistent with just naming my variables like the type is called and that works out nicely in Rust, because then you can also leave out the field name when filling in a struct with named fields. I’ll often have named my function parameters the same name that I ultimately need to pass into structs fields.

At this point, I’m secretly wondering, if a programming language could be designed where you don’t normally fill in variable names, but rather just use the type name to reference each value.
For the few cases where you actually do have multiple variables of the same type, then you could introduce a local (type) alias, much like it’s currently optional to add type annotations.
Someone should build this, so I don’t have to take on another side project. 🙃

little_ferris@programming.dev on 16 Oct 15:05 next collapse

Yea it’s like when we writeSome(2). It’s not a function call but a variant of the Option enum.

barsoap@lemm.ee on 16 Oct 15:40 collapse

Enum constructors are functions, this typechecks:

fn foo<T>() {
    let f: fn(T) -> Option<T> = Some;
}

I was a bit apprehensive because rust has like a gazillion different function types but here it seems to work like just any other language with a HM type system.

little_ferris@programming.dev on 16 Oct 17:01 next collapse

Woah. That’s quite interesting. I didn’t know that.

anton@lemmy.blahaj.zone on 17 Oct 13:41 collapse

I was a bit apprehensive because rust has like a gazillion different function types but here it seems to work like just any other language with a HM type system.

The fn(T)->R syntax works for functions without associated data, it discards details of the implementation and works like function pointers in C. This allows them to be copy and 'static.

The other function types can have data with them and have more type information at compile time which allows them to be inlined.
These functions each have their own unwritable type that implements the function traits (Fn(T)->R, FnMut(T)->R and FnOnce(T)->R) depending on their enclosed data.

I hope I remembered everything right from this video by Jon Gjengset.

tatterdemalion@programming.dev on 16 Oct 18:14 collapse

Clippy will warn you if you don’t use this feature.

Infernaltoast@programming.dev on 16 Oct 17:52 next collapse

You can manually implement PartialEq and Eq on an Enum that implements Hash to manually determine how the hashmap keys override/collide with one another.

tatterdemalion@programming.dev on 16 Oct 18:25 next collapse

One thing I like a lot about Rust is that it rarely does blow my mind.

But one crate that actually did blow my mind is corosensei. It’s not Rust per se that is so crazy here, but the way it’s essentially implementing a new language feature with assembly code. This is how you know Rust really is a systems programming language. I invite you to read the source code.

FizzyOrange@programming.dev on 17 Oct 18:25 collapse

Oh wow I’ve been looking for something nice like that for ages. Python can do this and it’s really great for silicon verification test stimulus. I’ve also done it in C++ using C++20 coroutines, but they are so complicated and low level I ended up having to use a library to help (libcoro). Felt like a bit of a gap in Rust, but this looks like a great solution!

solrize@lemmy.world on 17 Oct 00:11 next collapse

Here’s another Haskell example where I’d be interested to see a Rust counterpart. It’s a red-black tree implementation where the tree invariants are enforced by types. The code would less ugly with more recent GHC features, but same idea.

gist.github.com/rampion/2659812

old.reddit.com/comments/ti5il

snaggen@programming.dev on 17 Oct 06:59 collapse

Mindblowing features are basically, by definition, a result of bad language design. They blow your mind, since they are totally unexpected behaviours. They may still be cool, but they are unexpected and hence unintuitive.

A language that are full of these is Perl. And one simple one is that you can take the string “AAAAA” and use addition on that, like “AAAAA”++ and you will get the result “AAAAB”. Cool you may think, but is it really? Addition is normally used to increase the value of a number, that is a completely different operation than modifying a String. The string “AAAAA” cannot be said to be greater or less than “AAAAB”, besides the very special case when we order it. But in general the name “John” is not considered to be higher/lower than “Mark”, they are just different. So, even if it is cool to manipulate strings by using addition/subtraction, it is still bad language design and very unintuitive. Also, since perl is so loosely typed, it may also cause very unexpected bugs.

barsoap@lemm.ee on 17 Oct 08:19 next collapse

The string “AAAAA” cannot be said to be greater or less than “AAAAB”, besides the very special case when we order it.

I hate it to break it to you but it’s the same with numbers.

snaggen@programming.dev on 17 Oct 10:17 collapse

Ok, I then have some business proposals…

BB_C@programming.dev on 17 Oct 09:04 collapse

The general theme of your comment is good, but the example is…

The string “AAAAA” cannot be said to be greater or less than “AAAAB”

But in general the name “John” is not considered to be higher/lower than “Mark”

// rust
  eprintln!("{}", "AAAAB" > "AAAAA") // true
  eprintln!("{}", "Mark" > "John") // true
// C
  printf("%d\n", strcmp("AAAAB", "AAAAA")); // 1
  printf("%d\n", strcmp("Mark", "John")); // 1

strcmp() docs:

strcmp() returns an integer indicating the result of the comparison, as follows:

  • 0, if the s1 and s2 are equal;

  • a negative value if s1 is less than s2;

  • a positive value if s1 is greater than s2.

So basically, if C had higher level constructs, it would be identical to Rust here.

So, even if it is cool to manipulate strings by using addition/subtraction, it is still bad language design and very unintuitive.

Rust has impl Add<&str> for String and impl AddAssign<&str> for String. Both append as expected.

But maybe you meant numeric addition specifically.

In that case, yes, Rust doesn’t have that, although it’s an impl<'a> Step for &'a str away from having something similar (it would be (“AAAAA”…).next()).

impl Step for char already exists of course, but shouldn’t if we take your argument to its logical conclusion.

Oh, and C would most definitely have this feature if it could. Numerical manipulation of chars is commonplace there.