TODO 1.0 KB

12345678910111213141516171819202122232425
  1. LList.add(PositionContainer posSet, int posNumber, Object value)
  2. Does SeqIterator.remove work for SimpleVector, GapVector, StableVector?
  3. TreeList should extend AbstractSequence and implement Sequence.
  4. Should U64Vector (etc) extend S64Vector (etc)? Would share some code,
  5. but I don't think a U64Vector "is-a" S64Vector.
  6. PositionSet class (subsumes DOM NodeSet).
  7. Old CharBuffer had replace(int where, char[] chars, int start, int count),
  8. and replace(int where, String string).
  9. Old AbstractString had InPort open(), and replace(int where, char[]
  10. chars, int start, int count), and replace(int where, String string),
  11. and replace (int where, AbstractString string) and FString copy(), and
  12. insert(int where, int count, boolean beforeMarkers) and
  13. insert(int where, AbstractString str, boolean beforeMarkers) and
  14. insert(int where, char[] chars, int start, int count, boolean beforeMarkers)
  15. and insert(int where, char ch, int count, boolean beforeMarkers).
  16. class SubString extends SubSequence implements CharSequence.
  17. public SubString(CharSequence base, ...) { ... }