Select Git revision
ExercicesStream.java
Forked from
NAVES Guyslain / ProgAvExercices
Source project has a limited visibility.
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();
}