Skip to content

Commit

Permalink
Added notes on function exports and package extensions to docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
brainandforce committed Nov 7, 2024
1 parent ba7293c commit 19dc161
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/abstract.jl
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,16 @@ form must be wrapped in a `Val` to preserve type stability.
This function must be defined with all its arguments for each concrete type subtyping
`AbstractCliffordNumber`.
# Note on function export
This function is nearly identical in semantics to `StaticArraysCore.similar_type`. However, since
this package does not depend on `StaticArraysCore`, this function is not exported to avoid name
conflicts whenever any package exporting `StaticArraysCore.similar_type` is loaded.
If a package exports `StaticArraysCore.similar_type`, that function will have methods added which
match the methods in this package with the same signature. This may be triggered explicitly if
desired with a `using` or `import` directive.
"""
function similar_type(x::AbstractCliffordNumber, T::Type{<:BaseNumber}, Q::Val)
return similar_type(typeof(x), T, Q)
Expand Down

0 comments on commit 19dc161

Please sign in to comment.