this post was submitted on 14 Feb 2024
17 points (100.0% liked)
Learning Rust and Lemmy
392 readers
1 users here now
Welcome
A collaborative space for people to work together on learning Rust, learning about the Lemmy code base, discussing whatever confusions or difficulties we're having in these endeavours, and solving problems, including, hopefully, some contributions back to the Lemmy code base.
Rules TL;DR: Be nice, constructive, and focus on learning and working together on understanding Rust and Lemmy.
Running Projects
- Rust for Lemmings Reading Club (portal)
- Rust beginners challenges (portal)
- Heroically Helpful Comments
Policies and Purposes
- This is a place to learn and work together.
- Questions and curiosity is welcome and encouraged.
- This isn't a technical support community. Those with technical knowledge and experienced aren't obliged to help, though such is very welcome. This is closer to a library of study groups than stackoverflow. Though, forming a repository of useful information would be a good side effect.
- This isn't an issue tracker for Lemmy (or Rust) or a place for suggestions. Instead, it's where the nature of an issue, what possible solutions might exist and how they could be or were implemented can be discussed, or, where the means by which a particular suggestion could be implemented is discussed.
See also:
Rules
- Lemmy.ml rule 2 applies strongly: "Be respectful, even when disagreeing. Everyone should feel welcome" (see Dessalines's post). This is a constructive space.
- Don't demean, intimidate or do anything that isn't constructive and encouraging to anyone trying to learn or understand. People should feel free to ask questions, be curious, and fill their gaps knowledge and understanding.
- Posts and comments should be (more or less) within scope (on which see Policies and Purposes above).
- See the Lemmy Code of Conduct
- Where applicable, rules should be interpreted in light of the Policies and Purposes.
Relevant links and Related Communities
- Lemmy Organisation on GitHub
- Lemmy Documentation
- General Lemmy Discussion Community
- Lemmy Support Community
- Rust Community on lemmy.ml
- Rust Community on programming.dev
Thumbnail and banner generated by ChatGPT.
founded 9 months ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
In the last exercise (
05
), I ran quickly tried to extend it into creating "unfloored halves" (you'll know what I mean if you look at the exercise) ... and ran into the process of initialising empty arrays.What I hit upon is:
Where the
0.0
in[0.0; 5]
is necessary it seems?? And you can't simply havelet floating_data = [f32; 5];
... ?From what I gathered, the general syntax is
[EXPR; SIZE]
, whereEXPR
is actually evaluated, presumably to define the required memory/type, even though the type of the array (in the code above,f32
) also constrains the type of elements of the array.In the code above, as the default float type is
f64
, the typing of the array as[f32; 5]
actually constrained or affected the way that the expression of0.0
in the array literal was used to build the array.So why do I need to provide both so that they interact in this weird and implicit way?? Unless I'm missing something, surely something like
let floating_data = [f32; 5];
would be better? Putting that0.0
because it just needs to be there is tolerable but a bit off IMO.f32
is a type, you need to actually provide a value to the shorthand array initialization syntax, the array is filled with that value. There is no such thing as "uninitialized" or implicit zeroing here.let foo: [f32; 5] = [0.0; 5];
You seem to have indicated dismay over the default f64 type.
To type a integer or float literal, suffix it with its built-in type. For example:
0.0f32
1024usize
Does this look ugly? Yes. Good news! It's hardly relevant in an actual project because Rust will easily default to whichever float type you are using throughout the project as your floating point numbers with resolved types will resolve the types of the implicitly typed floating point numbers.
You can also use the same syntax with the
vec![]
macro :)let bar = vec![0.0f32; 5];
Shouldn't we be able to do something like
?
I'm on mobile and too lazy to try whipping up a rust playground example to test this out myself.
I'll do you one better!
(pretty sure the above only works reliably after they finally were able to derive traits on n-sized arrays but that's been in for a while now)
And as you suggested:
Thanks!
I recognise I was getting nitpicky there, just figured it might help someone else avoid confusion around it.
And yea, I figured I’d make sure I knew how to set the numeric type of my choice rather than just rely on inference.
Otherwise, I think I hate the postfix typing, I just can’t bring myself to use it lol.
But thanks for the help!!