Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:06, 8 January 2025 Iwiseman talk contribs created page Rust YouTube Bits (Created page with "=Introduction= As I strive to improve I wanted a page for just stuff I watch on YouTube =Deref= Rust list c++ has a deference operator. You can deference with a *. But with wonderful rust you can make one. In the video from '''The Dev Method''', they made an implementation of a box (smart pointer) and demonstrated how to do this <syntaxhighlight lang="rs"> struct MyBox<T>(T); impl<T> MyBox<T> { fn new(x: T) -> MyBox<T> { MyBox(x) } } fn main() { pri...")