Select Git revision
-
MENACER Mohamed authoredMENACER Mohamed authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Lens.java 89 B
package fr.univamu.progav.td6;
public interface Lens<T> {
void set(T t);
T get();
}