C# Class CustomSet, csharp

Inheritance: IEquatable
Exibir arquivo Open project: exercism/csharp Class Usage Examples

Public Methods

Method Description
Add ( int value ) : CustomSet,
Contains ( int value ) : bool
CustomSet ( ) : System,
Difference ( CustomSet, right ) : CustomSet,
Disjoint ( CustomSet, right ) : bool
Empty ( ) : bool
Intersection ( CustomSet, right ) : CustomSet,
Subset ( CustomSet, right ) : bool
Union ( CustomSet, right ) : CustomSet,

Method Details

Add() public method

public Add ( int value ) : CustomSet,
value int
return CustomSet,

Contains() public method

public Contains ( int value ) : bool
value int
return bool

CustomSet() public method

public CustomSet ( ) : System,
return System,

Difference() public method

public Difference ( CustomSet, right ) : CustomSet,
right CustomSet,
return CustomSet,

Disjoint() public method

public Disjoint ( CustomSet, right ) : bool
right CustomSet,
return bool

Empty() public method

public Empty ( ) : bool
return bool

Intersection() public method

public Intersection ( CustomSet, right ) : CustomSet,
right CustomSet,
return CustomSet,

Subset() public method

public Subset ( CustomSet, right ) : bool
right CustomSet,
return bool

Union() public method

public Union ( CustomSet, right ) : CustomSet,
right CustomSet,
return CustomSet,