This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package hoge; | |
import java.util.Calendar; | |
import java.util.Date; | |
import java.util.Iterator; | |
import java.util.NoSuchElementException; | |
public class Fuga { | |
public static Iterable<Date> iterableDays(Date from, Date to) { | |
final Date localFrom = from; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package biz.k11i.io; | |
import java.io.BufferedReader; | |
import java.io.Closeable; | |
import java.io.FileInputStream; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.util.Stack; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package verticalcode; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class VerticalCode { | |
private static final int BLOCK_BYTES = 1; | |
private static final int BLOCK_SIZE = BLOCK_BYTES * 8; |
NewerOlder