Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Commit

Permalink
Make indentation match Julia style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Apr 3, 2016
1 parent 6a84997 commit 144e57c
Showing 1 changed file with 28 additions and 27 deletions.
55 changes: 28 additions & 27 deletions src/NullableArrays.jl
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
module NullableArrays

using Compat
using Reexport
@reexport using Base.Cartesian
using Compat
using Reexport
@reexport using Base.Cartesian

export NullableArray,
NullableVector,
NullableMatrix,
export NullableArray,
NullableVector,
NullableMatrix,

# Macros
# Macros

# Methods
dropnull,
anynull,
allnull,
head,
nullify!,
padnull!,
padnull,
tail
# Methods
dropnull,
anynull,
allnull,
head,
nullify!,
padnull!,
padnull,
tail

include("typedefs.jl")
include("constructors.jl")
include("primitives.jl")
include("indexing.jl")
include("map.jl")
include("nullablevector.jl")
include("operators.jl")
include("broadcast.jl")
include("reduce.jl")
include("show.jl")
include("subarray.jl")

include("typedefs.jl")
include("constructors.jl")
include("primitives.jl")
include("indexing.jl")
include("map.jl")
include("nullablevector.jl")
include("operators.jl")
include("broadcast.jl")
include("reduce.jl")
include("show.jl")
include("subarray.jl")
end

0 comments on commit 144e57c

Please sign in to comment.