C# Class MyMediaLite.Data.StaticRatings

Inheritance: Ratings
ファイルを表示 Open project: zenogantner/MML-KDD Class Usage Examples

Protected Properties

Property Type Description
pos int

Public Methods

Method Description
Add ( int user_id, int item_id, double rating ) : void
RemoveAt ( int index ) : void
RemoveItem ( int item_id ) : void
RemoveUser ( int user_id ) : void
StaticRatings ( ) : System
StaticRatings ( int size ) : System

Method Details

Add() public method

public Add ( int user_id, int item_id, double rating ) : void
user_id int
item_id int
rating double
return void

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void

RemoveItem() public method

public RemoveItem ( int item_id ) : void
item_id int
return void

RemoveUser() public method

public RemoveUser ( int user_id ) : void
user_id int
return void

StaticRatings() public method

public StaticRatings ( ) : System
return System

StaticRatings() public method

public StaticRatings ( int size ) : System
size int
return System

Property Details

pos protected_oe property

The position where the next rating will be stored
protected int pos
return int