Package org.renjin.sexp

Examples of org.renjin.sexp.S4Object


  }

  @Test
  public void identicalS4() {
    topLevelContext.getGlobalEnvironment().setVariable("x", new S4Object());
    topLevelContext.getGlobalEnvironment().setVariable("y", new S4Object());
    eval("attr(x, 'foo') <- 'bar' ");
    eval("attr(y, 'foo') <- 'baz' ");

    assertThat(eval(".Internal(identical(x,y,TRUE,TRUE,TRUE,TRUE))"), equalTo(c(false)));
View Full Code Here

TOP

Related Classes of org.renjin.sexp.S4Object

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.