summaryrefslogblamecommitdiff
path: root/src/library/scala/runtime/ByteRef.java
blob: 27d3259db3708754bed78b006512c32700b344e6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                          
                                                                          
                                                                          



                                                                          
 
 

                      
 
                                                      

                                                                      

                                                   
                                                                      


                                                                   
 
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org                **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.runtime;


public class ByteRef implements java.io.Serializable {
    private static final long serialVersionUID = -100666928446877072L;

    public byte elem;
    public ByteRef(byte elem) { this.elem = elem; }
    public String toString() { return java.lang.Byte.toString(elem); }

    public static ByteRef create(byte e) { return new ByteRef(e); }
    public static ByteRef zero() { return new ByteRef((byte)0); }
}