Codota Logo
RList.isNamed
Code IndexAdd Codota to your IDE (free)

How to use
isNamed
method
in
org.rosuda.REngine.RList

Best Java code snippets using org.rosuda.REngine.RList.isNamed (Showing top 16 results out of 315)

  • Common ways to obtain RList
private void myMethod () {
RList r =
  • Codota IconREngine.REXP rEXP;rEXP.asList()
  • Codota Iconnew RList()
  • Smart code suggestions by Codota
}
origin: org.rosuda.REngine/REngine

  public String toString() {
    return "RList"+super.toString()+"{"+(isNamed()?"named,":"")+size()+"}";
  }
}
origin: org.rosuda.REngine/REngine

public String toString() {
  return super.toString()+(asList().isNamed()?"named":"");
}
origin: org.rosuda.REngine/REngine

public String toString() {
  return super.toString()+(asList().isNamed()?"named":"");
}

origin: net.rforge/REngine

  public String toString() {
    return "RList"+super.toString()+"{"+(isNamed()?"named,":"")+size()+"}";
  }
}
origin: net.rforge/REngine

public String toString() {
  return super.toString()+(asList().isNamed()?"named":"");
}

origin: net.rforge/REngine

public String toString() {
  return super.toString()+(asList().isNamed()?"named":"");
}
origin: net.rforge/REngine

if (payload.isNamed()) {
  String[] names = payload.keys();
  if (names.length == n) {
origin: org.rosuda.REngine/REngine

if (payload.isNamed()) {
  String[] names = payload.keys();
  if (names.length == n) {
origin: org.rosuda.REngine/Rserve

} else if (r instanceof REXPList) {
  RList l = r.asList();
  type = l.isNamed()?XT_LIST_TAG:XT_LIST_NOTAG;
  if (r instanceof REXPLanguage)
    type = (type==XT_LIST_TAG)?XT_LANG_TAG:XT_LANG_NOTAG;
origin: net.rforge/Rserve

} else if (r instanceof REXPList) {
  RList l = r.asList();
  type = l.isNamed()?XT_LIST_TAG:XT_LIST_NOTAG;
  if (r instanceof REXPLanguage)
    type = (type==XT_LIST_TAG)?XT_LANG_TAG:XT_LANG_NOTAG;
origin: net.rforge/REngine

/** creates a new generic vector from a list. If the list is named, the <code>"names"</code> attribute is created automatically from it.
 *  @param list list to create the vector from */
public REXPGenericVector(RList list) {
  super();
  payload=(list==null)?new RList():list;
  // automatically generate 'names' attribute
  if (payload.isNamed())
    attr = new REXPList(
      new RList(new REXP[] { new REXPString(payload.keys()) },
           new String[] { "names" }));
}

origin: org.rosuda.REngine/REngine

/** creates a new generic vector from a list. If the list is named, the <code>"names"</code> attribute is created automatically from it.
 *  @param list list to create the vector from */
public REXPGenericVector(RList list) {
  super();
  payload=(list==null)?new RList():list;
  // automatically generate 'names' attribute
  if (payload.isNamed())
    attr = new REXPList(
      new RList(new REXP[] { new REXPString(payload.keys()) },
           new String[] { "names" }));
}

origin: net.rforge/Rserve

int rxt = type;
if (type==XT_LIST || type==XT_LIST_TAG || type==XT_LIST_NOTAG)
  rxt=(cont.asList()!=null && cont.asList().isNamed())?XT_LIST_TAG:XT_LIST_NOTAG;
origin: org.rosuda.REngine/Rserve

int rxt = type;
if (type==XT_LIST || type==XT_LIST_TAG || type==XT_LIST_NOTAG)
  rxt=(cont.asList()!=null && cont.asList().isNamed())?XT_LIST_TAG:XT_LIST_NOTAG;
origin: net.rforge/Rserve

if (type==XT_VECTOR_STR) rxt=XT_ARRAY_STR; // VECTOR_STR is broken right now
if (type==XT_LIST || type==XT_LIST_TAG || type==XT_LIST_NOTAG)
  rxt=(cont.asList()!=null && cont.asList().isNamed())?XT_LIST_TAG:XT_LIST_NOTAG;
origin: org.rosuda.REngine/Rserve

if (type==XT_VECTOR_STR) rxt=XT_ARRAY_STR; // VECTOR_STR is broken right now
if (type==XT_LIST || type==XT_LIST_TAG || type==XT_LIST_NOTAG)
  rxt=(cont.asList()!=null && cont.asList().isNamed())?XT_LIST_TAG:XT_LIST_NOTAG;
org.rosuda.REngineRListisNamed

Popular methods of RList

    Popular in Java

    • Making http post requests using okhttp
    • findViewById (Activity)
    • compareTo (BigDecimal)
      Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
    • getSystemService (Context)
    • Container (java.awt)
      A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
    • BigDecimal (java.math)
      An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
    • Format (java.text)
      The base class for all formats. This is an abstract base class which specifies the protocol for clas
    • BitSet (java.util)
      This class implements a vector of bits that grows as needed. Each component of the bit set has a boo
    • ReentrantLock (java.util.concurrent.locks)
      A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
    • Reflections (org.reflections)
      Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
    Codota Logo
    • Products

      Search for Java codeSearch for JavaScript codeEnterprise
    • IDE Plugins

      IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Codota for your IDE now