Skip to content

Commit cab4a5d

Browse files
authored
Merge pull request #17 from cscherrer/remove-duplicate-lazymerge
remove redundancy
2 parents 20dfe05 + f519734 commit cab4a5d

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1.4'
13+
- '1.6'
1414
- '1'
1515
- 'nightly'
1616
os:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NestedTuples"
22
uuid = "a734d2a7-8d68-409b-9419-626914d4061d"
33
authors = ["Chad Scherrer <[email protected]> and contributors"]
4-
version = "0.3.7"
4+
version = "0.3.8"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

src/lazymerge.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@ have one (possibly nested) named tuple for observed data, and another for a
3333
proposal in an MCMC algorithm. The merge is therefore in the body of a loop
3434
that's executed many times.
3535
"""
36-
function lazymerge(x, y)
37-
return LazyMerge(x,y)
38-
end
36+
function lazymerge end
3937

4038

4139
NTLike = Union{L,N} where {L<:LazyMerge, N<:NamedTuple}

0 commit comments

Comments
 (0)