Constraint over undetermined type parameters that keeps separate maps to reflect parameter orderings.
Attributes
- boundsMap
a map from TypeLambda to arrays. Each array contains twice the number of entries as there a type parameters in the TypeLambda. The first half of the array contains the type bounds that constrain the lambda's type parameters. The second half might contain type variables that track the corresponding parameters, or is left empty (filled with nulls). An instantiated type parameter is represented by having its instance type in the corresponding array entry. The dual use of arrays for poly params and typevars is to save space and hopefully gain some speed.
- hardVars
a set of type variables that are marked as hard and therefore will not undergo a
widenUnion
when instantiated to their lower bound.- lowerMap
a map from TypeLambdas to arrays. Each array entry corresponds to a parameter P of the type lambda; it contains all constrained parameters Q that are known to be smaller than P, i.e. Q <: P.
- upperMap
a map from TypeLambdas to arrays. Each array entry corresponds to a parameter P of the type lambda; it contains all constrained parameters Q that are known to be greater than P, i.e. P <: Q.
- Companion:
- object
- Graph
- Supertypes
Members list
Type members
Types
Value members
Concrete methods
A new constraint which is derived from this constraint by adding
entries for all type parameters of poly
.
A new constraint which is derived from this constraint by adding
entries for all type parameters of poly
.
Attributes
- tvars
A list of type variables associated with the params, or Nil if the constraint will just be checked for satisfiability but will solved to give instances of type variables.
A constraint that includes the relationship p1 <: p2
.
<:
relationships between parameters ("edges") are propagated, but
non-parameter bounds are left alone.
A constraint that includes the relationship p1 <: p2
.
<:
relationships between parameters ("edges") are propagated, but
non-parameter bounds are left alone.
Attributes
- direction
Must be set to
KeepParam1
orKeepParam2
whenp2 <: p1
is already true depending on which parameter the caller intends to keep. This will avoid propagating bounds that will be redundant afterp1
andp2
are unified.
Check that constraint only refers to TypeParamRefs bound by itself
Check that constraint only refers to TypeParamRefs bound by itself
Attributes
- Definition Classes
Check that every typevar om this constraint has as origin a type parameter of athe type lambda that is associated with the typevar itself.
Check that every typevar om this constraint has as origin a type parameter of athe type lambda that is associated with the typevar itself.
Attributes
Check that no constrained parameter contains itself as a bound
Check that no constrained parameter contains itself as a bound
Attributes
Does the constraint's domain contain the type parameters of tl
?
Does the constraint's domain contain the type parameters of tl
?
Attributes
Does the constraint's domain contain the type parameter param
?
Does the constraint's domain contain the type parameter param
?
Attributes
Does this constraint contain the type variable tvar
and is it uninstantiated?
Does this constraint contain the type variable tvar
and is it uninstantiated?
Attributes
The type lambdas constrained by this constraint
The type lambdas constrained by this constraint
Attributes
The type lambda parameters constrained by this constraint
The type lambda parameters constrained by this constraint
Attributes
The given tl
in case it is not contained in this constraint,
a fresh copy of tl
otherwise.
The given tl
in case it is not contained in this constraint,
a fresh copy of tl
otherwise.
Attributes
The boundsMap
entry corresponding to param
The boundsMap
entry corresponding to param
Attributes
lower(param) \ lower(butNot)
lower(param) \ lower(butNot)
Attributes
upper(param) \ upper(butNot)
upper(param) \ upper(butNot)
Attributes
Check whether predicate holds for all parameters in constraint
Check whether predicate holds for all parameters in constraint
Attributes
Perform operation op
on all typevars that do not have their inst
field set.
Perform operation op
on all typevars that do not have their inst
field set.
Attributes
Whether tl
is present in both this
and that
but is associated with
different TypeVars there, meaning that the constraints cannot be merged.
Whether tl
is present in both this
and that
but is associated with
different TypeVars there, meaning that the constraints cannot be merged.
Attributes
Gives for each instantiated type var that does not yet have its inst
field
set, the instance value stored in the constraint. Storing instances in constraints
is done only in a temporary way for contexts that may be retracted
without also retracting the type var as a whole.
Gives for each instantiated type var that does not yet have its inst
field
set, the instance value stored in the constraint. Storing instances in constraints
is done only in a temporary way for contexts that may be retracted
without also retracting the type var as a whole.
Attributes
Is tv
marked as hard in the constraint?
Is tv
marked as hard in the constraint?
Attributes
Is it known that param1 <:< param2
?
Is it known that param1 <:< param2
?
Attributes
Is entry associated with tl
removable? This is the case if
all type parameters of the entry are associated with type variables
which have their inst
fields set.
Is entry associated with tl
removable? This is the case if
all type parameters of the entry are associated with type variables
which have their inst
fields set.
Attributes
The parameters that are known to be smaller wrt <: than param
The parameters that are known to be smaller wrt <: than param
Attributes
The lower dominator set.
The lower dominator set.
This is like lower
, except that each parameter returned is no smaller than every other returned parameter.
Attributes
The upper dominator set.
The upper dominator set.
This is like upper
, except that each parameter returned is no greater than every other returned parameter.
Attributes
The constraint bounds for given type parameter param
.
Poly params that are known to be smaller or greater than param
are not contained in the return bounds.
The constraint bounds for given type parameter param
.
Poly params that are known to be smaller or greater than param
are not contained in the return bounds.
Attributes
Does param
occur at the toplevel in tp
?
Toplevel means: the type itself or a factor in some
combination of &
or |
types.
Does param
occur at the toplevel in tp
?
Toplevel means: the type itself or a factor in some
combination of &
or |
types.
Attributes
Add the fact param1 <: param2
to the constraint current
and propagate
<:<
relationships between parameters ("edges") but not bounds.
Add the fact param1 <: param2
to the constraint current
and propagate
<:<
relationships between parameters ("edges") but not bounds.
Attributes
A new constraint with all entries coming from tl
removed.
A new constraint with all entries coming from tl
removed.
Attributes
A new constraint which is derived from this constraint by removing
the type parameter param
from the domain and replacing all top-level occurrences
of the parameter elsewhere in the constraint by type tp
.
A new constraint which is derived from this constraint by removing
the type parameter param
from the domain and replacing all top-level occurrences
of the parameter elsewhere in the constraint by type tp
.
Attributes
A new constraint with entry from
replaced with to
Rerences to from
from within other constraint bounds are updated to to
.
Type variables are left alone.
A new constraint with entry from
replaced with to
Rerences to from
from within other constraint bounds are updated to to
.
Type variables are left alone.
Attributes
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns:
a string representation of the object.
- Definition Classes
- Any
The text representation of this showable element. This normally dispatches to a pattern matching method in Printers.
The text representation of this showable element. This normally dispatches to a pattern matching method in Printers.
Attributes
- Definition Classes
The type variable corresponding to parameter param
, or
NoType, if param
is not in constrained or is not paired with a type variable.
The type variable corresponding to parameter param
, or
NoType, if param
is not in constrained or is not paired with a type variable.
Attributes
The uninstantiated typevars of this constraint
The uninstantiated typevars of this constraint
Attributes
The public version of updateEntry
. Guarantees that there are no cycles
The public version of updateEntry
. Guarantees that there are no cycles
Attributes
The parameters that are known to be greater wrt <: than param
The parameters that are known to be greater wrt <: than param
Attributes
Inherited methods
A fallback text representation, if the pattern matching in Printers does not have a case for this showable element
A fallback text representation, if the pattern matching in Printers does not have a case for this showable element
Attributes
- Inherited from:
- Showable
The string representation of this showable element.
The string representation with each line after the first one indented by the given given margin (in spaces).
The string representation with each line after the first one indented by the given given margin (in spaces).
Attributes
- Inherited from:
- Showable
The summarized string representation of this showable element. Recursion depth is limited to some smallish value. Default is Config.summarizeDepth.
The summarized string representation of this showable element. Recursion depth is limited to some smallish value. Default is Config.summarizeDepth.
Attributes
- Inherited from:
- Showable