containers-0.8: Assorted concrete container types
Safe HaskellSafe-Inferred
LanguageHaskell2010

Data.IntSet.Internal.IntTreeCommons

Description

WARNING

This module is considered internal.

The Package Versioning Policy does not apply.

The contents of this module may change in any way whatsoever and without any warning between minor versions of this package.

Authors importing this module are expected to track development closely.

Description

This module defines common constructs used by both Data.IntSet and Data.IntMap.

Since: 0.8

Synopsis

Documentation

newtypePrefixSource#

A Prefix represents some prefix of high-order bits of an Int.

A Prefix is usually considered in the context of a Bin or Bin.

Constructors

Prefix 

Fields

Instances

Instances details
EqPrefixSource# 
Instance details

Defined in Data.IntSet.Internal.IntTreeCommons

Methods

(==) :: Prefix -> Prefix -> Bool#

(/=) :: Prefix -> Prefix -> Bool#

LiftPrefixSource# 
Instance details

Defined in Data.IntSet.Internal.IntTreeCommons

Methods

lift :: Quote m => Prefix -> m Exp#

liftTyped :: forall (m :: Type -> Type). Quote m => Prefix -> Code m Prefix#

nomatch :: Int -> Prefix -> BoolSource#

Whether the Int does not start with the given Prefix.

An Int starts with a Prefix if it shares the high bits with the internal Int value of the Prefix up to the mask bit.

nomatch is usually used to determine whether a key belongs in a Bin, since all keys in a Bin share a Prefix.

left :: Int -> Prefix -> BoolSource#

Whether the Int is to the left of the split created by a Bin with this Prefix.

This does not imply that the Int belongs in this Bin. That fact is usually determined first using nomatch.

signBranch :: Prefix -> BoolSource#

Whether this Prefix splits a Bin at the sign bit.

This can only be True at the top level. If it is true, the left child contains non-negative keys and the right child contains negative keys.

dataTreeTreeBranchSource#

A TreeTreeBranch is returned by treeTreeBranch to indicate how two Bins relate to each other.

Consider that A and B are the Bins whose Prefixes are given to treeTreeBranch as the first and second arguments respectively.

Constructors

ABL

A contains B in the left child

ABR

A contains B in the right child

BAL

B contains A in the left child

BAR

B contains A in the right child

EQL

A and B have equal prefixes

NOM

A and B have prefixes that do not match

mask :: Key -> Int -> IntSource#

The prefix of key i up to (but not including) the switching bit m.

branchMask :: Int -> Int -> IntSource#

The first switching bit where the two prefixes disagree.

Precondition for defined behavior: p1 /= p2

close