Wrap method vs chain method











up vote
0
down vote

favorite












Imagine we have the following:



sealed trait Foo
case class FullFoo[A](foo: A) extends Foo
case object EmptyFoo extends Foo


and



def liftToFoo[A](opt: Option[A]): Foo = 
opt.map(a => FullFoo(a)).getOrElse(EmptyFoo)


We can easily do:



liftToFoo(Some(123)) // FullFoo(123)
liftToFoo(None) // EmptyFoo


But I'm curious if there's some "chainable" way to call this (rather than wrapping the method like above):



Some(123).someFunction(liftToFoo)  // FullFoo(123)









share|improve this question






















  • I'm trying to avoid using an implicit class to achieve this style. Curious if there's something I can use already.
    – user451151
    Nov 11 at 0:41















up vote
0
down vote

favorite












Imagine we have the following:



sealed trait Foo
case class FullFoo[A](foo: A) extends Foo
case object EmptyFoo extends Foo


and



def liftToFoo[A](opt: Option[A]): Foo = 
opt.map(a => FullFoo(a)).getOrElse(EmptyFoo)


We can easily do:



liftToFoo(Some(123)) // FullFoo(123)
liftToFoo(None) // EmptyFoo


But I'm curious if there's some "chainable" way to call this (rather than wrapping the method like above):



Some(123).someFunction(liftToFoo)  // FullFoo(123)









share|improve this question






















  • I'm trying to avoid using an implicit class to achieve this style. Curious if there's something I can use already.
    – user451151
    Nov 11 at 0:41













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Imagine we have the following:



sealed trait Foo
case class FullFoo[A](foo: A) extends Foo
case object EmptyFoo extends Foo


and



def liftToFoo[A](opt: Option[A]): Foo = 
opt.map(a => FullFoo(a)).getOrElse(EmptyFoo)


We can easily do:



liftToFoo(Some(123)) // FullFoo(123)
liftToFoo(None) // EmptyFoo


But I'm curious if there's some "chainable" way to call this (rather than wrapping the method like above):



Some(123).someFunction(liftToFoo)  // FullFoo(123)









share|improve this question













Imagine we have the following:



sealed trait Foo
case class FullFoo[A](foo: A) extends Foo
case object EmptyFoo extends Foo


and



def liftToFoo[A](opt: Option[A]): Foo = 
opt.map(a => FullFoo(a)).getOrElse(EmptyFoo)


We can easily do:



liftToFoo(Some(123)) // FullFoo(123)
liftToFoo(None) // EmptyFoo


But I'm curious if there's some "chainable" way to call this (rather than wrapping the method like above):



Some(123).someFunction(liftToFoo)  // FullFoo(123)






scala






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 0:34









user451151

23119




23119












  • I'm trying to avoid using an implicit class to achieve this style. Curious if there's something I can use already.
    – user451151
    Nov 11 at 0:41


















  • I'm trying to avoid using an implicit class to achieve this style. Curious if there's something I can use already.
    – user451151
    Nov 11 at 0:41
















I'm trying to avoid using an implicit class to achieve this style. Curious if there's something I can use already.
– user451151
Nov 11 at 0:41




I'm trying to avoid using an implicit class to achieve this style. Curious if there's something I can use already.
– user451151
Nov 11 at 0:41












1 Answer
1






active

oldest

votes

















up vote
2
down vote













Not exactly what you're looking for but perhaps a little closer than what you've got.



Some(123).fold(EmptyFoo:Foo)(FullFoo(_))





share|improve this answer





















  • A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
    – jwvh
    Nov 11 at 1:42










  • Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
    – user451151
    Nov 11 at 1:51










  • Thanks again for your feedback and help!
    – user451151
    Nov 11 at 1:53











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244784%2fwrap-method-vs-chain-method%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
2
down vote













Not exactly what you're looking for but perhaps a little closer than what you've got.



Some(123).fold(EmptyFoo:Foo)(FullFoo(_))





share|improve this answer





















  • A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
    – jwvh
    Nov 11 at 1:42










  • Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
    – user451151
    Nov 11 at 1:51










  • Thanks again for your feedback and help!
    – user451151
    Nov 11 at 1:53















up vote
2
down vote













Not exactly what you're looking for but perhaps a little closer than what you've got.



Some(123).fold(EmptyFoo:Foo)(FullFoo(_))





share|improve this answer





















  • A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
    – jwvh
    Nov 11 at 1:42










  • Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
    – user451151
    Nov 11 at 1:51










  • Thanks again for your feedback and help!
    – user451151
    Nov 11 at 1:53













up vote
2
down vote










up vote
2
down vote









Not exactly what you're looking for but perhaps a little closer than what you've got.



Some(123).fold(EmptyFoo:Foo)(FullFoo(_))





share|improve this answer












Not exactly what you're looking for but perhaps a little closer than what you've got.



Some(123).fold(EmptyFoo:Foo)(FullFoo(_))






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 11 at 1:33









jwvh

24.6k52038




24.6k52038












  • A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
    – jwvh
    Nov 11 at 1:42










  • Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
    – user451151
    Nov 11 at 1:51










  • Thanks again for your feedback and help!
    – user451151
    Nov 11 at 1:53


















  • A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
    – jwvh
    Nov 11 at 1:42










  • Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
    – user451151
    Nov 11 at 1:51










  • Thanks again for your feedback and help!
    – user451151
    Nov 11 at 1:53
















A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
– jwvh
Nov 11 at 1:42




A) Yeah, but you said you were "trying to avoid an implicit class". B) Success()? Failure()? That's a Try, not a Foo.
– jwvh
Nov 11 at 1:42












Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
– user451151
Nov 11 at 1:51




Re: implicits, yeah totally! Lol I hacked together this "Foo" example, but was really thinking of applying it with a Try :P You caught me in some Frankenstein copy/paste :)
– user451151
Nov 11 at 1:51












Thanks again for your feedback and help!
– user451151
Nov 11 at 1:53




Thanks again for your feedback and help!
– user451151
Nov 11 at 1:53


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244784%2fwrap-method-vs-chain-method%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Full-time equivalent

Bicuculline

さくらももこ