HN user

nunchuckninja

3 karma
Posts0
Comments9
View on HN
No posts found.
Nim 1.0 7 years ago

Sorry I was wrong it's asm.js for rust. Scala does have an amazing first party backend that I love using

Nim 1.0 7 years ago

Scala and rust both compile to JS too I think.

Is WeWork a Fraud? 7 years ago

All I got from the article was that the term pressi-tutes wasn't carved from thin air and people really are like that (blodget, ny post)

I'll add more details to see if it helps-

C:

``` node prime= list.head;

while () { node probe = prime.next;

  while()
  {

    if () //condition on prime.data and probe.data {
      probe.next = probe.next.next; //& drop stuff
  }
} ```

Can any rust experts tell me that unsafe rust is powerful and expressive enough to let me do anything?

I have a use case where I have two iterators on a linked list in nested loops and the second iterators deletes some elements as it goes. Is this something I can express in unsafe rust?