ChunkSorterForMergingCompare Method |
Compares two Chunks in the following order.
Compares X.ChunkStart with Y.ChunkStart if the result is non zero then returns the result.
else compares Y.ChunnkEnd with X.ChunkEnd and returns the result.
Namespace: Bio.IO.BAMAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntaxpublic int Compare(
Chunk x,
Chunk y
)
Public Function Compare (
x As Chunk,
y As Chunk
) As Integer
public:
virtual int Compare(
Chunk^ x,
Chunk^ y
) sealed
abstract Compare :
x : Chunk *
y : Chunk -> int
override Compare :
x : Chunk *
y : Chunk -> int
Parameters
- x
- Type: Bio.IO.BAMChunk
First chunk to compare. - y
- Type: Bio.IO.BAMChunk
Second chunk to compare.
Return Value
Type:
Int32[Missing <returns> documentation for "M:Bio.IO.BAM.ChunkSorterForMerging.Compare(Bio.IO.BAM.Chunk,Bio.IO.BAM.Chunk)"]
Implements
IComparerTCompare(T, T)
See Also