Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/21/08 09:48:11 (16 years ago)
Author:
vdorfer
Message:

Created API documentation for HeuristicLab.Operators namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/EqualToComparator.cs

    r2 r801  
    2828
    2929namespace HeuristicLab.Operators {
     30  /// <summary>
     31  /// Operator to check whether two items are equal to each other.
     32  /// </summary>
    3033  public class EqualToComparator : ComparatorBase {
     34
     35    /// <inheritdoc select="summary"/>
    3136    public override string Description {
    3237      get { return @"TODO\r\nOperator description still missing ..."; }
    3338    }
    3439
     40    /// <summary>
     41    /// Initializes a new instance of <see cref="EqualToComparator"/>.
     42    /// </summary>
    3543    public EqualToComparator()
    3644      : base() {
    3745    }
    3846
     47    /// <summary>
     48    /// Checks whether the two specified items are equal to each other.
     49    /// </summary>
     50    /// <param name="left">The left side of the comparison.</param>
     51    /// <param name="right">The right side of the comparison.</param>
     52    /// <returns><c>true</c> if the two elements are equal to each other, <c>false otherwise</c>.</returns>
    3953    protected override bool Compare(IComparable left, IItem right) {
    4054      return left.CompareTo(right) == 0;
Note: See TracChangeset for help on using the changeset viewer.