Select Git revision
Drawer.java
Forked from
COUETOUX Basile / graphic-2020
Source project has a limited visibility.
-
AREZKI Celia authoredAREZKI Celia 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);
}