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

  • Home
  • SEARCH
  • 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 8017187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T20:46:07+00:00 2026-06-04T20:46:07+00:00

I am trying to implement the scala splitAt using pattern matching and this is

  • 0

I am trying to implement the scala splitAt using pattern matching and this is what I am trying to do:

def split[T](someIndex:Int,someList:List[T]):(List[T],List[T]) = {
     def splitHelper[T](currentIndex:Int,someList:List[T],headList:List[T]):(List[T],List[T])= {
     (currentIndex,someList) match {
        case (someIndex,x::tail) => (x::headList,tail)
        case (currentIndex,x::y) => splitHelper(currentIndex+1,y,x::headList)
        case _ => (headList,headList)
        }
     }
     splitHelper(0,someList,List[T]())
}

The compiler is complaining by saying:

<console>:15: error: unreachable code
 case (currentIndex,x::y) => splitHelper(currentIndex+1,y,x::headList)

Can someone point out what I am doing wrong here and why I am getting the unreachable code error.

Thanks

  • 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-04T20:46:09+00:00Added an answer on June 4, 2026 at 8:46 pm

    You should use `someIndex` and `currentIndex` (constants) in pattern matching.

    scala> val a = 1
    a: Int = 1
    
    scala> 2 match {
         |   case a => println(a)
         | }
    2
    
    scala> 2 match {
         |   case `a` => println("a")
         |   case _ => println("Oops")
         | }
    Oops
    

    Chapter 15 of Programming in Scala, First Edition.
    “Case Classes and Pattern Matching”
    by Martin Odersky, Lex Spoon, and Bill Venners
    :

    If you need to, you can still use a lowercase name for a pattern
    constant, using one of two tricks. First, if the constant is a field
    of some object, you can prefix it with a qualifier. For instance, pi
    is a variable pattern, but this.pi or obj.pi are constants even though
    they start with lowercase letters. If that does not work (because pi
    is a local variable, say), you can alternatively enclose the variable
    name in back ticks.

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

Sidebar

Related Questions

I am trying to implement a simple wordcount in scala using an immutable map(this
I trying to implement the active record pattern using Java/JDBC and MySQL along with
Using import scala.collection.mutable.{Publisher, Subscriber} I'm trying to implement a class that subscribes to events
I'm trying to implement an undo/redo feature into my application, using the Command Pattern
I am trying to implement C#'s ExpandoObject -like class in Scala. This is how
I'm trying to implement a generic java interface in scala. I have looked at:
I've been trying to work out how to implement Church-encoded data types in Scala.
Iam trying to implement a simple JMS(traditional not using springs) code in eclipse using
I'm trying to implement in Scala a generic data type parameterized on a type
In a Scala Compiler Plugin, I'm trying to create a new class that implement

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.