Pebble Coding

ソフトウェアエンジニアによるIT技術、数学の備忘録

2023-11-01から1ヶ月間の記事一覧

std::filesystemの便利さ

std::filesystem::pathは便利である。 文字コード変換機能が内蔵されており,macOS,windowsどちらも意図どおり動作する。 以下検証コードと実行結果である。 std::filesystem::path path1 = "あ"; const unsigned char* a = (const unsigned char*)path1.stri…

swift5.9(Xcode15)で気になる機能

Swift.org - Swift 5.9 Released SE-0366: consume operator to end the lifetime of a variable binding. C++の std::move と同じものが導入されました。 swift-evolution/proposals/0366-move-function.md at main · apple/swift-evolution · GitHub SE-03…