search for: fooa

Displaying 4 results from an estimated 4 matches for "fooa".

Did you mean: foo
2008 Apr 28
1
variable names when using S3 methods
...find anything in the documentation. Any explanation, or a link to the proper documentation, if it does exist, would be appreciated. Thanks, Aaron Rendahl University of Minnesota School of Statistics # set up two function that both use method "foo" but with different variable names fooA<-function(model,...) UseMethod("foo") fooB<-function(Bmodel,...) UseMethod("foo") # now set up two methods (default and character) that have an additional variable foo.character <- function(model, m=5,...) cat("foo.character: m is", m, "\n") fo...
2014 May 02
1
Authors@R: and Author field
Hi to all Authors@R: c(person("fooa","foob", role = c("aut","cre"), email = "fooa.foob@fooc.de"), person("foo1","foo2", role = c("ctb"), email = "foo1.foo2@foo3.de")) Author: fooa foob, with contributio...
2011 Apr 01
1
[LLVMdev] vestiges of multiple return values
Hi, I was trying to remove some old code that handles ReturnInsts with more than 1 operand -- see attached patch -- when I stumbled across test/Assembler/aggregate-return-single-value.ll: define { i32 } @fooa() nounwind { ret i32 0 } ... define [1 x i32] @fooc() nounwind { ret i32 0 } Is there really any need to handle these odd cases, where the type of the value being returned doesn't match the return type of the function? Thanks, Jay. -------------- next part -------------- A non-text attach...
2016 Feb 16
2
DllImport: How to specify the library to link to?
Hi, I am absolutely new to LLVM. Currently reading through documentation and the C-API (which i want to use). As i am working on Windows, i was curios on how to specify an import which links to a function exported by a dll. The DLLStorageClass seems to be the wy to go, this seems clear. But after declaring a function for import, how do i specify the DLL the function is included in?