Select Git revision
ListMatrix.java
Forked from
YAGOUBI Rim / Game of life Template
Source project has a limited visibility.
-
YAGOUBI Rim authoredYAGOUBI Rim authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Lens.java 87 B
package datastruct;
public interface Lens<S> {
S get();
void set(S value);
}