Closed
Description
opened on Sep 7, 2018
The atlasrep package uses the undocumented kernel function POSITION_FIRST_COMPONENT_SORTED
. It would be nice if that could stop. As an alternative, this code:
pos:= POSITION_FIRST_COMPONENT_SORTED( WidthUnicodeTable, ints[j] );
could likely be replaced with this, as done in several other packages (however, I have not tested this within altasrep):
pos:= PositionSorted( WidthUnicodeTable, [ ints[j] ] );
Once an atlasrep version not using this has been released, we can get rid of PositionFirstComponent
and also this kernel function behind it.
Activity