Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8530655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T09:17:55+00:00 2026-06-11T09:17:55+00:00

Having (Some(1), Some(2)) I expect to get Some((1, 2)) and having (Some(1), None) I

  • 0

Having

(Some(1), Some(2))

I expect to get

Some((1, 2))

and having

(Some(1), None)

I expect to get

None
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T09:17:56+00:00Added an answer on June 11, 2026 at 9:17 am

    You can use the fact that Scalaz 7 provides a Bitraverse instance for tuples and then sequence as usual (but with bisequence instead of sequence):

    scala> import scalaz._, std.option._, std.tuple._, syntax.bitraverse._
    import scalaz._
    import std.option._
    import std.tuple._
    import syntax.bitraverse._
    
    scala> val p: (Option[Int], Option[String]) = (Some(1), Some("a"))
    p: (Option[Int], Option[String]) = (Some(1),Some(a))
    
    scala> p.bisequence[Option, Int, String]
    res0: Option[(Int, String)] = Some((1,a))
    

    Unfortunately Scalaz 7 currently needs the type annotation here.


    In a comment Yo Eight states that the type annotation will remain mandatory here. I’m not sure what his or her reasoning is, but it’s in fact perfectly easy to write your own wrapper that will provide any appropriately typed tuple with a bisequence method and won’t require a type annotation:

    import scalaz._, std.option._, std.tuple._    
    
    class BisequenceWrapper[F[_, _]: Bitraverse, G[_]: Applicative, A, B](
      v: F[G[A], G[B]]
    ) {
      def bisequence = implicitly[Bitraverse[F]].bisequence(v)
    }
    
    implicit def bisequenceWrap[F[_, _]: Bitraverse, G[_]: Applicative, A, B](
      v: F[G[A], G[B]]
    ) = new BisequenceWrapper(v)
    

    Now (some(1), some("a")).bisequence will compile just fine.

    I can’t think of a good reason Scalaz wouldn’t include something like this. Whether or not you want to add it in the meantime is a matter of taste, but there’s definitely no theoretical obstacle to letting the compiler do the typing here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having some difficulty returning all the results I would expect when leaving
I'm apparently having some trouble learning how to use classes correctly. I expect the
Im having some trouble getting Ajax.ActionLink to work how I expect. In /views/layout/_Layout.cshtml I
I'm having some trouble figuring out how to get Ember's select view to update
Having some trouble with R's garbage collection, when passing objects to C++. We have
Having some annoying issues with loading images into a BufferedImage (image in the example)
Having some trouble getting a screenscraper webservice up and running on a weblogic 10.3.3
Having some issues getting my head around the differences between UTF-8, UTF-16, ASCII and
Having some issues with the ... in ObjectiveC. I'm basically wrapping a method and
Having some trouble with what should be a very simple scenario. For example purposes,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.