C# Class CustomSet, csharp

Inheritance: IEquatable
Afficher le fichier Open project: exercism/csharp Class Usage Examples

Méthodes publiques

Méthode 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 méthode

public Add ( int value ) : CustomSet,
value int
Résultat CustomSet,

Contains() public méthode

public Contains ( int value ) : bool
value int
Résultat bool

CustomSet() public méthode

public CustomSet ( ) : System,
Résultat System,

Difference() public méthode

public Difference ( CustomSet, right ) : CustomSet,
right CustomSet,
Résultat CustomSet,

Disjoint() public méthode

public Disjoint ( CustomSet, right ) : bool
right CustomSet,
Résultat bool

Empty() public méthode

public Empty ( ) : bool
Résultat bool

Intersection() public méthode

public Intersection ( CustomSet, right ) : CustomSet,
right CustomSet,
Résultat CustomSet,

Subset() public méthode

public Subset ( CustomSet, right ) : bool
right CustomSet,
Résultat bool

Union() public méthode

public Union ( CustomSet, right ) : CustomSet,
right CustomSet,
Résultat CustomSet,