package cs2030s.fp; /** * Represent a function to initialise a constant value. * CS2030S Lab 5 * AY22/23 Semester 1 * * @param The type of the constant value. */ @FunctionalInterface public interface Constant { /** * The functional method to initialise the constant. * * @return The constant value. */ T init(); }