C# 클래스 Deveel.Data.Util.BytesUtil

파일 보기 프로젝트 열기: deveel/deveeldb

공개 메소드들

메소드 설명
ReadInt4 ( byte arr, int offset ) : int
ReadInt8 ( byte arr, int offset ) : long
URShift ( int number, int bits ) : int

Operates a shift on the given integer by the number of bits specified.

WriteInt8 ( long value, byte arr, int offset ) : void

메소드 상세

ReadInt4() 공개 정적인 메소드

public static ReadInt4 ( byte arr, int offset ) : int
arr byte
offset int
리턴 int

ReadInt8() 공개 정적인 메소드

public static ReadInt8 ( byte arr, int offset ) : long
arr byte
offset int
리턴 long

URShift() 공개 정적인 메소드

Operates a shift on the given integer by the number of bits specified.
public static URShift ( int number, int bits ) : int
number int The number to shift.
bits int The number of bits to shift the given number.
리턴 int

WriteInt8() 공개 정적인 메소드

public static WriteInt8 ( long value, byte arr, int offset ) : void
value long
arr byte
offset int
리턴 void