Tabnine Logo
RList.isNamed
Code IndexAdd Tabnine 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)

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

    • Parsing JSON documents to java classes using gson
    • setRequestProperty (URLConnection)
    • putExtra (Intent)
    • setContentView (Activity)
    • EOFException (java.io)
      Thrown when a program encounters the end of a file or stream during an input operation.
    • FileOutputStream (java.io)
      An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
    • InputStream (java.io)
      A readable source of bytes.Most clients will use input streams that read data from the file system (
    • BlockingQueue (java.util.concurrent)
      A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
    • Executors (java.util.concurrent)
      Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
    • Modifier (javassist)
      The Modifier class provides static methods and constants to decode class and member access modifiers
    • Github Copilot alternatives
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now