This file contains hidden or 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
public class Y<T> implements Function<Function<Function<T, T>, Function<T, T>>, Function<T, T>> { | |
@FunctionalInterface | |
private interface FuncToFunc<F> extends Function<FuncToFunc<F>, F> {} | |
@Override | |
public Function<T, T> apply(Function<Function<T, T>, Function<T, T>> r) { | |
final FuncToFunc<Function<T, T>> funcToFunc = f -> f.apply(f); | |
return funcToFunc.apply(f -> r.apply(x -> f.apply(f).apply(x))); | |
} |
This file contains hidden or 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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains hidden or 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
Optional<User> user = users.get(id); | |
if(user.isPresent()) { | |
Optional<Account> account = accounts.get(user.get()); | |
if(account.isPresent()) { | |
Optional<CreditCard> card = cards.get(user.get(), account.get()); | |
if(card.isPresent()) { | |
card.get().destroy(); | |
} | |
} | |
} |
This file contains hidden or 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
AtomicReference<Map> amap; | |
readOnlyMethod() { | |
// get immutable map reference | |
Map m = amap.get(); | |
m.get(key); | |
... | |
m.get(key2); | |
... | |
} |
This file contains hidden or 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
==> Configuration | |
HOMEBREW_VERSION: 0.9.5 | |
HEAD: 80e6a9cbed41cfe4e53bf0bf8711d92b2eb8f090 | |
CPU: quad-core 64-bit sandybridge | |
OS X: 10.9.1-x86_64 | |
Xcode: 5.0.2 | |
CLT: 5.0.1.0.1.1382131676 | |
X11: 2.7.5 => /opt/X11 | |
==> ENV | |
HOMEBREW_CC: clang |
This file contains hidden or 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
class MyActor(ref: ActorRef) extends Actor { | |
def receive: Receive = { | |
case Bifurcate => | |
context.actorOf(Props[MyActor](new MyActor(sender))) | |
} | |
} |
This file contains hidden or 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
module Main where | |
import Data.Sequence | |
-- * | |
-- *ww**w* | |
-- **w**** | |
-- ******* | |
sq = fromList [3,2,1,3,4,2,3] |
This file contains hidden or 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
module Main where | |
import System.IO | |
import qualified Data.Map as M | |
import qualified Data.Text.Lazy as T | |
import qualified Data.Text.Lazy.IO as T | |
import Data.List (foldl') | |
-- maybe Data.Text.Lazy maybe ByteString | |
(+++) = T.append |
This file contains hidden or 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
module Main where | |
import System.IO | |
import qualified Data.Map as M | |
main = do | |
inh <- openFile "text.txt" ReadMode | |
outh <- openFile "dict.txt" WriteMode | |
counts <- mainLoop inh M.empty | |
let excsPairs = M.assocs counts |
This file contains hidden or 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
public class Wewe { | |
interface A { | |
int run(int x); | |
} | |
interface B { | |
int run(String x); | |
} | |
private void overloaded(A a) |
NewerOlder