class Semian::Simple::SlidingWindow

:nodoc:

def initialize(max_size:)

def initialize(max_size:)
  @max_size = max_size
  @window = []
end