ufcpp / UfcppSample

http://ufcpp.net/ 向けのサンプル
Apache License 2.0
136 stars 39 forks source link

ROS最適化のブログ(2018)の間違い #381

Closed iwkjosec closed 2 years ago

iwkjosec commented 2 years ago

2018/12/16 静的なデータの ReadOnlySpan 最適化

ちなみに、この最適化が効くのはReadOnlySpan<byte>ReadOnlySpan<char>だけみたいです。 bytechar以外の値はダメですし、書き換え可能なSpan<T>を使ってもダメです。

ReadOnlySpan<char> -> ReadOnlySpan<sbyte> char -> sbyte

ufcpp commented 2 years ago

あー…

要確認:

ReadOnlySpan<char> span = "string literal";

の場合。

ufcpp commented 2 years ago