search for: other_fun

Displaying 3 results from an estimated 3 matches for "other_fun".

Did you mean: other_func
2015 Mar 13
0
Ah I've got it now .Thanks! RE: Understanding why "no metadata object found ... not exported?" warnings from the methods package exist, and what they mean
...ion object or a class metadata object)) and what happens to the *object* itself. Or in other terms, whether a namespace (possibly locked) needs to be updated, or the (state of the) object itself is what needs to be updated. I'll try and explain below. If `mypkg` want to use a function called `other_fun` from package `otherpkg` all I have to do is import the *name* of `other_fun` into the `mypkg` namespace. After that all the magic of making sure that the other_fun *object* works and can find everything it needs is taken care of for me. The other_fun object knows the enclosing environment where...
2015 Mar 13
1
Understanding why "no metadata object found ... not exported?" warnings from the methods package exist, and what they mean
On looking more closely, the purpose of finding the class definition is to update the entry for the new relationship, as the warning message suggests. That requires that the namespace holding the definition be writable. In the case of subclass information, the original namespace is very likely to be locked, if it's not the package currently being loaded. Copying the definition in order to
2015 Mar 11
2
[LLVMdev] LLVM Parallel IR
On 10 March 2015 at 08:36, Kevin Streit <streit at mailbox.org> wrote: > Again, optimizations could break it, violating a possible contract with the user. AFAIK, all these annotations are more hints than contracts. Adding #pragma omp simd on a loop that has forward dependencies that cannot be solved should not make the loop vectorize (incorrectly). Same goes for standard OMP, threads and