AIMA.Core.Environment.Map.ExtendableMap.getLocationsLinkedTo C# (CSharp) Method

getLocationsLinkedTo() public method

public getLocationsLinkedTo ( String fromLocation ) : List
fromLocation String
return List
	public List<String> getLocationsLinkedTo(String fromLocation) {
		List<String> result = links.getSuccessors(fromLocation);
	    result.Sort();
		return result;
	}