Skip to content

Commit 8f06e1a

Browse files
remove duplicate function definitions
1 parent 13618f6 commit 8f06e1a

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

src/frontend/specification/documentation.jl

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,3 @@
1-
param_labels(spec::SemSpecification) = spec.param_labels
2-
3-
"""
4-
vars(semobj) -> Vector{Symbol}
5-
6-
Return the vector of SEM model variables (both observed and latent)
7-
in the order specified by the model.
8-
"""
9-
function vars end
10-
11-
vars(spec::SemSpecification) = error("vars(spec::$(typeof(spec))) is not implemented")
12-
13-
"""
14-
observed_vars(semobj) -> Vector{Symbol}
15-
16-
Return the vector of SEM model observed variable in the order specified by the
17-
model, which also should match the order of variables in [`SemObserved`](@ref).
18-
"""
19-
function observed_vars end
20-
21-
observed_vars(spec::SemSpecification) =
22-
error("observed_vars(spec::$(typeof(spec))) is not implemented")
23-
24-
"""
25-
latent_vars(semobj) -> Vector{Symbol}
26-
27-
Return the vector of SEM model latent variable in the order specified by the
28-
model.
29-
"""
30-
function latent_vars end
31-
32-
latent_vars(spec::SemSpecification) =
33-
error("latent_vars(spec::$(typeof(spec))) is not implemented")
34-
351
"""
362
vars(semobj) -> Vector{Symbol}
373

0 commit comments

Comments
 (0)