Skip to content

Instantly share code, notes, and snippets.

View filosganga's full-sized avatar

Filippo De Luca filosganga

View GitHub Profile
@filosganga
filosganga / CycleIterator.scala
Created October 27, 2013 20:40
An Iterator that cycles trough the given elements
class CycleIterator[B <: A, +A](elements: Iterable[B]) extends Iterator[A] {
var iterator: Iterator[B] = Iterator.empty
def hasNext: Boolean = {
if (!iterator.hasNext) {
iterator = elements.iterator
}
iterator.hasNext
}
@filosganga
filosganga / RoundRobinIterable.java
Last active May 13, 2023 07:50
It implements an Iterable that take elements from a list of Iterable in a round robin fashion. The test is most explicative than the description.
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.collect.Iterables.filter;
import static com.google.common.collect.Iterators.cycle;
import static java.util.Arrays.asList;
import java.util.Iterator;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.collect.FluentIterable;
@filosganga
filosganga / FizzBuzz.scala
Created November 7, 2012 12:59
FizzBuzz implementation
class FizzBuzz(divisors = Map(3->"Fizz", 5->"Buzz")) {
def fizzBuzz(n: Int): String = {
divisors.foldLeft(""){(res, d)=>
n % d._1 match {
case 0 => res + d._2
case _ => res
}
} match {
case "" => n.toString
@filosganga
filosganga / Contact.java
Last active December 9, 2016 17:30
GWT RPC Spring Scaffolding
package org.filippodeluca.gwt.examples.contacts;
import com.google.gwt.user.client.rpc.IsSerializable;
public class Contact implements IsSerializable {
private String name;
private String email;
public Contact(String name, String email) {
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*