Stable Identifier in Regex pattern match via implicit conversion
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:
re""creates aStringContextinstance- an instance of class
REis created through implicit conversion - the member
re, of typeRegex, is accessed
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
add a comment |
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:
re""creates aStringContextinstance- an instance of class
REis created through implicit conversion - the member
re, of typeRegex, is accessed
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
add a comment |
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:
re""creates aStringContextinstance- an instance of class
REis created through implicit conversion - the member
re, of typeRegex, is accessed
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
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:
re""creates aStringContextinstance- an instance of class
REis created through implicit conversion - the member
re, of typeRegex, is accessed
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
scala pattern-matching implicit-conversion
edited Jan 3 at 5:40
jwvh
asked Jan 3 at 5:34
jwvhjwvh
28k52141
28k52141
add a comment |
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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