JuliaCollections/DataStructures.jl

Add features to LinkedList

Aberta

#443 aberto em 24 de ago. de 2018

 (8 comentários) (0 reação) (0 responsável)Julia (261 forks)batch import
enhancementgood first issue

Métricas do repositório

Stars
 (745 estrelas)
Métricas de merge de PR
 (Mesclagem média 1d 18h) (3 fundiu PRs em 30d)

Description

When looking at #442 I noticed just how featureless our LinkedList is. In particular, as pointed out by #442 we have no mutating operations.

I think adding some of the missing methods would be great for someone new to julia. Since implementing a linked list is like DataStructures101.

Here is a list of functions I think should be implemented. Feel free to suggest more.

  • getindex
  • setindex!
  • delete! with overloads both for single indexes and for ranges.
  • append!
  • The iterator traits (or are the defaults right?)

Guia do colaborador