C# (CSharp) RTools.Util CharBuffer - 6 ejemplos encontrados. Estos son los ejemplos en C# (CSharp) del mundo real mejor valorados de RTools.Util.CharBuffer extraídos de proyectos de código abierto. Puedes valorar ejemplos para ayudarnos a mejorar la calidad de los ejemplos.
Buffer for characters. This approximates StringBuilder but is designed to be faster for specific operations. This is about 30% faster for the operations I'm interested in (Append, Clear, Length, ToString). This trades off memory for speed.
To make Remove from the head fast, this is implemented as a ring buffer.
This uses head and tail indices into a fixed-size array. This will grow the array as necessary.