private static bool UnpackScalarHeader( StreamingUnpacker @this, int b, Stream source, UnpackingMode unpackingMode, out MessagePackObject? result )
		{
			// Transit to UnpackScalar
			@this._next = @this._unpackScalar;
			@this._isInCollection = false;
			@this._bytesBuffer = _scalarBuffers[ b % 4 ];

			// Try to get body.
			if ( [email protected]( source, unpackingMode, out result ) )
			{
				// Need more data
				return false;
			}

			return true;
		}