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

    r2 r801  
    2828
    2929namespace HeuristicLab.Operators {
     30  /// <summary>
     31  /// Operator to check whether one item is equal or greater than another.
     32  /// </summary>
    3033  public class GreaterOrEqualThanComparator : ComparatorBase {
     34    /// <inheritdoc select="summary"/>
    3135    public override string Description {
    3236      get { return @"TODO\r\nOperator description still missing ..."; }
    3337    }
    34 
     38    /// <summary>
     39    /// Initializes a new instance of <see cref="GreaterOrEqualThanComparator"/>.
     40    /// </summary>
    3541    public GreaterOrEqualThanComparator()
    3642      : base() {
    3743    }
    3844
     45    /// <summary>
     46    /// Checks whether the <paramref name="left"/> item is greater or 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 greater or equal to the
     51    /// <paramref name="right"/>, <c>false</c> otherwise.</returns>
    3952    protected override bool Compare(IComparable left, IItem right) {
    4053      return left.CompareTo(right) >= 0;
Note: See TracChangeset for help on using the changeset viewer.