Operation |
Details |
public Neighbours(): |
Notes: | constructor of class Neighbours | |
public Add( Neighbour neuron):void |
Notes: | Add one neuron to list | |
public Count():int |
<<property>> |
public AddIfNotExist( int index, int distance):bool |
Notes: | Add "Neighbour" with index and distanc to list, if not exist Neighbour with the same index
@returns return true if not exist neuron in list with index, else false | |
public Exist( int index):bool |
Notes: | Return true in neuron with index is in list, else false
@returns true if exist in list, else false | |
public GetNeighbours():Neighbour |
Notes: | return list of neighbours
@returns | |
public this( int index):Neighbour |
<<indexer>> Notes: | indexer for Neighbour | |