usually yes
what about unsual situations would you give out an example i'd really appreciate it
you mean in pattern matching? there they do completely opposite things. for example, let value = 42; let reference = &1729; if let &foo = reference { // `foo` is of `i32` } if let ref foo = value { // `foo` is `&i32 }
yes that makes more sense now thank you
Обсуждают сегодня