Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

predicate function negation with ComposedFunction #44752

Merged
merged 7 commits into from
Apr 12, 2022
Merged
Prev Previous commit
Next Next commit
include another test for showing chained function compositions
  • Loading branch information
markmbaum authored and vtjnash committed Apr 7, 2022
commit 50f9be56b9ed847d26b5831773f323f3e161bd5f
1 change: 1 addition & 0 deletions test/operators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ end
@test repr((-) ∘ sin) == "(-) ∘ sin"
@test repr(cos ∘ (sin ∘ tan)) == "cos ∘ (sin ∘ tan)"
markmbaum marked this conversation as resolved.
Show resolved Hide resolved
@test repr(!(cos ∘ !sin)) == "!(cos ∘ !sin)"
@test repr(cos ∘ sin ∘ tan) == "cos ∘ sin ∘ tan" == repr((cos ∘ sin) ∘ tan)
end

# issue #19891
Expand Down