Skip to content

Commit 14f0c05

Browse files
Copilotdadhi
andauthored
docs: add xml comments for expr tree operators
Agent-Logs-Url: https://github.com/dadhi/FastExpressionCompiler/sessions/306086af-4c82-4f97-9286-a3fe568d3f9a Co-authored-by: dadhi <39516+dadhi@users.noreply.github.com>
1 parent 023bb11 commit 14f0c05

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/FastExpressionCompiler.LightExpression/FlatExpression.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,9 +738,11 @@ public override bool Equals(object obj) =>
738738
public override int GetHashCode() =>
739739
new StructuralComparer().Hash(ref this);
740740

741+
/// <summary>Determines whether two flat expression trees are structurally equal.</summary>
741742
[MethodImpl(MethodImplOptions.AggressiveInlining)]
742743
public static bool operator ==(ExprTree left, ExprTree right) => left.Equals(right);
743744

745+
/// <summary>Determines whether two flat expression trees are not structurally equal.</summary>
744746
[MethodImpl(MethodImplOptions.AggressiveInlining)]
745747
public static bool operator !=(ExprTree left, ExprTree right) => !left.Equals(right);
746748

0 commit comments

Comments
 (0)