All Questions
Tagged with immutability beginner
3 questions
4
votes
1
answer
261
views
Heterogenous persistent list in Rust
I have implemented a basic, but seemingly working, persistent (as in immutable), heterogenous list type in Rust.
Here's the code:
...
5
votes
3
answers
136
views
Generating a game board with squares in a rectangle
I am trying to generate a game board (similar to a Monopoly board). I am new to Scala and am thinking that there may be a better way to do this. But improvements to the code are also welcome.
...
39
votes
8
answers
5k
views
Immutable objects in Java
I just finished studying immutable objects and their advantages so I thought I'd create one of my own. Here is my employee class that extends a person class. It is not mutable since I have getters to ...