Skip to content
Snippets Groups Projects
Select Git revision
  • 6bc956978dbcf8a8a83a567a1f6bd63022ba0f2a
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

ListMatrix.java

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    Source project has a limited visibility.
    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);
    }