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/UnequalToComparator.cs

    r2 r801  
    2727
    2828namespace HeuristicLab.Operators {
     29  /// <summary>
     30  /// Operator to check whether two items are not equal to each other.
     31  /// </summary>
    2932  public class UnequalToComparator : ComparatorBase {
     33    /// <inheritdoc select="summary"/>
    3034    public override string Description {
    3135      get { return @"TODO\r\nOperator description still missing ..."; }
    3236    }
    3337
     38    /// <summary>
     39    /// Initializes a new instance of <see cref="UnequalToComparator"/>.
     40    /// </summary>
    3441    public UnequalToComparator()
    3542      : base() {
    3643    }
    3744
     45    /// <summary>
     46    /// Checks whether the <paramref name="left"/> item is not equal to the <paramref name="right"/>.
     47    /// </summary>
     48    /// <param name="left">The left side of the comparison.</param>
     49    /// <param name="right">The right side of the comparison.</param>
     50    /// <returns><c>true</c> if the <paramref name="left"/> item is not equal
     51    /// to the <paramref name="right"/>, <c>false</c> otherwise.</returns>
    3852    protected override bool Compare(IComparable left, IItem right) {
    3953      return left.CompareTo(right) != 0;
Note: See TracChangeset for help on using the changeset viewer.