Stable Identifier in Regex pattern match via implicit conversion












0















This works...



val re = "a.c".r
"abc" match {
case re() => "HIT"
case _ => "miss"
}
//res0: String = HIT


...because the Regex class, and thus every Regex instance, has an unapplySeq() method that gets invoked when pattern matching.



But it only works if the Regex variable, re in this case, is a val. If it's a var or def then it won't compile, Error: not found: value re. This is because, I believe, the LHS of a pattern match is required to be a Stable Identifier, and vars/defs don't qualify.



This also works...



implicit class RE(sc :StringContext) {
def re = "a.c".r
}

"abc" match {
case re"" => "HIT"
case _ => "miss"
}
//res1: String = HIT


...because of the following transformations:





  1. re"" creates a StringContext instance

  2. an instance of class RE is created through implicit conversion

  3. the member re, of type Regex, is accessed


  4. unapplySeq() is invoked, and pattern matching proceeds as before


Notice that, in this case, the re variable does not have to be a val. It makes no difference whether it's a val, var, or def. Notice also that re"" is not a stand-alone construct. It won't compile outside of this pattern-matching context.



So, if all this is reasonably accurate, the question is: Where is the stable identifier? At what point was that achieved?










share|improve this question





























    0















    This works...



    val re = "a.c".r
    "abc" match {
    case re() => "HIT"
    case _ => "miss"
    }
    //res0: String = HIT


    ...because the Regex class, and thus every Regex instance, has an unapplySeq() method that gets invoked when pattern matching.



    But it only works if the Regex variable, re in this case, is a val. If it's a var or def then it won't compile, Error: not found: value re. This is because, I believe, the LHS of a pattern match is required to be a Stable Identifier, and vars/defs don't qualify.



    This also works...



    implicit class RE(sc :StringContext) {
    def re = "a.c".r
    }

    "abc" match {
    case re"" => "HIT"
    case _ => "miss"
    }
    //res1: String = HIT


    ...because of the following transformations:





    1. re"" creates a StringContext instance

    2. an instance of class RE is created through implicit conversion

    3. the member re, of type Regex, is accessed


    4. unapplySeq() is invoked, and pattern matching proceeds as before


    Notice that, in this case, the re variable does not have to be a val. It makes no difference whether it's a val, var, or def. Notice also that re"" is not a stand-alone construct. It won't compile outside of this pattern-matching context.



    So, if all this is reasonably accurate, the question is: Where is the stable identifier? At what point was that achieved?










    share|improve this question



























      0












      0








      0








      This works...



      val re = "a.c".r
      "abc" match {
      case re() => "HIT"
      case _ => "miss"
      }
      //res0: String = HIT


      ...because the Regex class, and thus every Regex instance, has an unapplySeq() method that gets invoked when pattern matching.



      But it only works if the Regex variable, re in this case, is a val. If it's a var or def then it won't compile, Error: not found: value re. This is because, I believe, the LHS of a pattern match is required to be a Stable Identifier, and vars/defs don't qualify.



      This also works...



      implicit class RE(sc :StringContext) {
      def re = "a.c".r
      }

      "abc" match {
      case re"" => "HIT"
      case _ => "miss"
      }
      //res1: String = HIT


      ...because of the following transformations:





      1. re"" creates a StringContext instance

      2. an instance of class RE is created through implicit conversion

      3. the member re, of type Regex, is accessed


      4. unapplySeq() is invoked, and pattern matching proceeds as before


      Notice that, in this case, the re variable does not have to be a val. It makes no difference whether it's a val, var, or def. Notice also that re"" is not a stand-alone construct. It won't compile outside of this pattern-matching context.



      So, if all this is reasonably accurate, the question is: Where is the stable identifier? At what point was that achieved?










      share|improve this question
















      This works...



      val re = "a.c".r
      "abc" match {
      case re() => "HIT"
      case _ => "miss"
      }
      //res0: String = HIT


      ...because the Regex class, and thus every Regex instance, has an unapplySeq() method that gets invoked when pattern matching.



      But it only works if the Regex variable, re in this case, is a val. If it's a var or def then it won't compile, Error: not found: value re. This is because, I believe, the LHS of a pattern match is required to be a Stable Identifier, and vars/defs don't qualify.



      This also works...



      implicit class RE(sc :StringContext) {
      def re = "a.c".r
      }

      "abc" match {
      case re"" => "HIT"
      case _ => "miss"
      }
      //res1: String = HIT


      ...because of the following transformations:





      1. re"" creates a StringContext instance

      2. an instance of class RE is created through implicit conversion

      3. the member re, of type Regex, is accessed


      4. unapplySeq() is invoked, and pattern matching proceeds as before


      Notice that, in this case, the re variable does not have to be a val. It makes no difference whether it's a val, var, or def. Notice also that re"" is not a stand-alone construct. It won't compile outside of this pattern-matching context.



      So, if all this is reasonably accurate, the question is: Where is the stable identifier? At what point was that achieved?







      scala pattern-matching implicit-conversion






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 3 at 5:40







      jwvh

















      asked Jan 3 at 5:34









      jwvhjwvh

      28k52141




      28k52141
























          0






          active

          oldest

          votes











          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',
          autoActivateHeartbeat: false,
          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%2f54016840%2fstable-identifier-in-regex-pattern-match-via-implicit-conversion%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016840%2fstable-identifier-in-regex-pattern-match-via-implicit-conversion%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

          Mossoró

          Error while reading .h5 file using the rhdf5 package in R

          Pushsharp Apns notification error: 'InvalidToken'