Skip to content

Commit

Permalink
Structure fix, rename from jMonad to Seq
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Paulo Amorim committed Feb 18, 2016
1 parent cce7666 commit 8cbb893
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.jmonad;
package com.jmonad.seq;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

import com.jmonad.lambda.Action;
import com.jmonad.lambda.BinaryFunction;
import com.jmonad.lambda.Function;
import com.jmonad.seq.lambda.Action;
import com.jmonad.seq.lambda.BinaryFunction;
import com.jmonad.seq.lambda.Function;

public class Seq<T> implements Comparable<Seq<T>>, Iterable<T> {
private List<T> list;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.jmonad.lambda;
package com.jmonad.seq.lambda;

public interface Action<T> {
void call(T param);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.jmonad.lambda;
package com.jmonad.seq.lambda;

public interface BinaryFunction<Ret, T, U> {
Ret call(T param1, U param2);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.jmonad.lambda;
package com.jmonad.seq.lambda;

public interface Function<Ret, T> {
Ret call(T param);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.jmonad;

import com.jmonad.seq.Seq;
import org.junit.Test;

public class SeqTest {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':jmonad'
include ':seq'

0 comments on commit 8cbb893

Please sign in to comment.