TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Pattern Matching in a Dynamic OOP Language

14 pointsby danecjensenover 14 years ago

1 comment

riffraffover 14 years ago
I think the author may be interested in looking at user defined/dynamic patterns/extensible matchers or whatever the name is, as seen in F# and Scala<p>Basically where you can define your own pattern rule as a simple method in a class, and later use it for destructuring and matching, e.g.<p><pre><code> var Http= new Regex(stuff with (protocol)(domain)(path)) var Http(protocol,domain,path) = "http://foo.com/bar" # variables protocol="http",domain="foo.com", path="/bar" assigned </code></pre> Which may be there in the language already, but I have not seen it mantioned
评论 #2116713 未加载