mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-11 09:14:39 +02:00
Fix a couple forgotten references to contains
in the comments
This commit is contained in:
@@ -200,7 +200,7 @@ splice!(arr,2) #=> 4 ; arr is now [3,5]
|
|||||||
b = [1,2,3]
|
b = [1,2,3]
|
||||||
append!(a,b) # Now a is [1, 2, 3, 4, 5, 1, 2, 3]
|
append!(a,b) # Now a is [1, 2, 3, 4, 5, 1, 2, 3]
|
||||||
|
|
||||||
# Check for existence in a list with contains
|
# Check for existence in a list with in
|
||||||
in(a,1) #=> true
|
in(a,1) #=> true
|
||||||
|
|
||||||
# Examine the length with length
|
# Examine the length with length
|
||||||
@@ -254,7 +254,7 @@ values(filled_dict)
|
|||||||
#=> ValueIterator{Dict{ASCIIString,Int64}}(["three"=>3,"one"=>1,"two"=>2])
|
#=> ValueIterator{Dict{ASCIIString,Int64}}(["three"=>3,"one"=>1,"two"=>2])
|
||||||
# Note - Same as above regarding key ordering.
|
# Note - Same as above regarding key ordering.
|
||||||
|
|
||||||
# Check for existence of keys in a dictionary with contains, haskey
|
# Check for existence of keys in a dictionary with in, haskey
|
||||||
in(filled_dict, ("one", 1)) #=> true
|
in(filled_dict, ("one", 1)) #=> true
|
||||||
in(filled_dict, ("two", 3)) #=> false
|
in(filled_dict, ("two", 3)) #=> false
|
||||||
haskey(filled_dict, "one") #=> true
|
haskey(filled_dict, "one") #=> true
|
||||||
|
Reference in New Issue
Block a user