Julia tools
CamiXon.primitivetype
— Methodprimitivetype(T::Type)
The primitive type of a Type
Examples:
julia> T = Complex{Float16}};
julia> primitivetype(T)
Float16
julia> T = String
julia> primitivetype(T)
Char
CamiXon.lc_primitivetype
— Methodlc_primitivetype(o::Any)
Lowest comon primitive type of Any Type
Examples:
julia> o = ([1//2, 1//3]; (1//4, 1//1, 1//6));
julia> lc_primitivetype(o)
Int64
CamiXon.lc_eltype
— Methodlc_eltype(o) ≡ eltype
Lowest common eltype of a collection.
Examples:
julia> o = ([1//2, 1//3]; (1//4, 1//1, 1//6));
julia> lc_eltype(o)
Rational{Int64}
julia> o = ([1//2, 1//3]; (1//4, big(1)//big(5), 1//6));
julia> lc_eltype(o)
Rational
julia> o = ([1//2, 1//3]; (1//4, [big(1)//big(5)], 1//6));
julia> lc_eltype(o)
Any
julia> o = ([1/2, 1/3]; (1/4, 1/1, 1/6));
julia> lc_eltype(o)
Float64
CamiXon.conditionalType
— MethodconditionalType(n::T, nc::T [; msg=true]) where T<:Integer
Convert type T
to BigInt
for n > nc
.
Example:
julia> conditionalType(46, 46)
Int64
julia> conditionalType(47, 46)
BigInt
CamiXon.find_all
— Methodfind_all(A [,a...]; count=false)
A: string/array of elements of the same type
default : Array containing the index (indices) of selected elements of A (default: all elements)
count=true: The number of indices found for selected elements of A (default: all elements)
Examples:
A = [:📑,:📌,:📢,:📌,:📞]
B = [1,2,3,2,5]
str = "aβcβd";
find_all(A) == find_all(B) == find_all(str)
true
find_all(A,:📌)
1-element Array{Array{Int64,1},1}:
[2, 4]
find_all(str)
4-element Array{Array{Int64,1},1}:
[1]
[2, 4]
[3]
[5]
find_all(A; count=true)
4-element Array{Int64,1}:
1
2
1
1
str = "📑📌📢📌📞"
find_all(str,'📌')
1-element Array{Array{Int64,1},1}:
[2, 4]
CamiXon.find_first
— Methodfind_first(A [,a...]; dict=false)
The first index of selected Array element
A: string/array of elements of the same type
default : Array containing the first index (indices) of selected elements of A (default: all elements)
dict=true: Dict for the first index (indices) of selected elements of A (default: all elements)
Examples:
A = [:📑,:📌,:📢,:📌,:📞]
B = [1,2,3,2,5]
str = "aβcβd";
find_first(A) == find_first(B) == find_first(str)
true
find_first(A,:📌)
1-element Array{Array{Int64,1},1}:
2
find_last(A,:📌; dict=true)
1-element Array{Pair{Symbol,Int64},1}:
:📌 => 2
find_last(A; dict=true)
4-element Array{Pair{Symbol,Int64},1}:
:📑 => 1
:📌 => 2
:📢 => 3
:📞 => 5
find_first(str)
4-element Array{Int64,1}:
1
2
3
5
CamiXon.find_last
— Methodfind_last(A [,a...]; dict=false)
The last index of selected Array element
A: string/array of elements of the same type
default : Array containing the lasst index (indices) of selected elements of A (default: all elements)
dict=true: Dict for the lasst index (indices) of selected elements of A (default: all elements)
Examples:
A = [:📑,:📌,:📢,:📌,:📞]
B = [1,2,3,2,5]
str = "aβcβd";
find_last(A) == find_first(B) == find_first(str)
true
find_last(A,:📌)
1-element Array{Array{Int64,1},1}:
4
find_last(A,:📌; dict=true)
1-element Array{Pair{Symbol,Int64},1}:
:📌 => 4
find_last(A; dict=true)
4-element Array{Pair{Symbol,Int64},1}:
:📑 => 1
:📌 => 4
:📢 => 3
:📞 => 5
find_last(str)
4-element Array{Int64,1}:
1
4
3
5