エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント2件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
My favorite rust function
My favorite rust function is std::mem::drop which is used to free or deallocate a value, similar ... My favorite rust function is std::mem::drop which is used to free or deallocate a value, similar to free() in C. Quoting the docs from stdlib, This function is not magic; it is literally defined as pub fn drop<T>(_x: T) { } How could a function definition with an empty body ever be useful? Ownership and lifetimes are Rust’s most unique features and it gives you the predictability and performance o
2019/10/13 リンク