Coder Social home page Coder Social logo

tagged_type_testing's Introduction

This output demonstrates that there's no need to call Tag.unwrap(taggedValue) from String interpolation, no?

$cat src/main/scala/net/X.scala
package net 

import scalaz._, Scalaz._

object X {


  def main(args: Array[String]): Unit = {
    println(regular)
    println(unwrapped)
  }

  trait Foo

  def regular: String = {
    val foo: String @@ Foo = Tag.of[Foo]("regular")
    s"hi $foo"
  } 

  def unwrapped: String = {
    val		  foo: String @@ Foo = Tag.of[Foo]("unwrapped")
    s"hi ${Tag.unwrap(foo)}"
  }

}

and javap:

$javap -c -l target/scala-2.12/classes/net/X$Foo.class
Compiled from "X.scala"
public final class net.X {
  public static java.lang.String unwrapped();
    Code:
       0: getstatic     #19                 // Field net/X$.MODULE$:Lnet/X$;
       3: invokevirtual #21                 // Method net/X$.unwrapped:()Ljava/lang/String;
       6: areturn

  public static java.lang.String regular();
    Code:
       0: getstatic     #19                 // Field net/X$.MODULE$:Lnet/X$;
       3: invokevirtual #24                 // Method net/X$.regular:()Ljava/lang/String;
       6: areturn

  public static void main(java.lang.String[]);
    Code:
       0: getstatic     #19                 // Field net/X$.MODULE$:Lnet/X$;
       3: aload_0
       4: invokevirtual #28                 // Method net/X$.main:([Ljava/lang/String;)V
       7: return
}

tagged_type_testing's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.