Skip to content

Commit 682113b

Browse files
author
Christopher Doris
committed
remove unused functions
1 parent 6a749ea commit 682113b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/utils.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,6 @@ module Utils
164164
size_to_cstrides(elsz::Integer, sz::Tuple{Vararg{Integer}}) =
165165
isempty(sz) ? () : (size_to_cstrides(elsz * sz[end], sz[1:end-1])..., elsz)
166166

167-
isfcontiguous(o::AbstractArray) = strides(o) == size_to_fstrides(1, size(o)...)
168-
isccontiguous(o::AbstractArray) = strides(o) == size_to_cstrides(1, size(o)...)
169-
170167
struct StaticString{T,N} <: AbstractString
171168
codeunits :: NTuple{N,T}
172169
StaticString{T,N}(codeunits::NTuple{N,T}) where {T,N} = new{T,N}(codeunits)

0 commit comments

Comments
 (0)