Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
291 views

Scala: 9 ways to define a method?

So i've been trying to puzzle through the various ways you can define stuff in scala, complicated by my lack of understanding of the way {} blocks are treated: object NewMain extends Thing{ def ...
10
votes
2answers
2k views

Redefining a let'd variable in Clojure loop

OK. I've been tinkering with Clojure and I continually run into the same problem. Let's take this little fragment of code: (let [x 128] (while (> x 1) (do (println x) (def x (/ x ...
10
votes
5answers
981 views

let vs def in clojure

I want to make a local instance of a Java Scanner class in a clojure program. Why does this not work: ;gives me: count not supported on this type: Symbol (let s (new Scanner "a b c")) but it ...
9
votes
5answers
10k views

rails - controller action name to string

i have a rails question how do i get controller action name inside the controller action? f.ex. instead of def create logger.info("create") end to write something like def create ...
7
votes
2answers
113 views

Why no destructing in def form?

In a let form (Clojure here) I can doing something like (let [[u s v] (svd A)] (do-something-with u v)) where svd returns a list of length three. This is a very natural sort of thing to do, so ...
7
votes
4answers
849 views

In Clojure, how to define a variable named by a string?

Given a list of names for variables, I want to set those variables to an expression. I tried this: (doall (for [x ["a" "b" "c"]] (def (symbol x) 666))) ...but this yields the error ...
5
votes
2answers
217 views

def with no args

If I create a function: def a(): String = return "some string" the result would be "a: ()String" So I can use it with/without brackets On the other hand if I create the same function def a:String ...
4
votes
4answers
1k views

Using a DLL with .h header in C++

I have been given a small library, consisting of a .dll, a .h header and a .def file. I'm fairly sure the library was written in C, but possibly C++. Is it possible for me to access the functions in ...
3
votes
4answers
92 views

python positional args and keyword args

I am reading the source codes of mercurial, and found such a func def in commands.py: def import_(ui, repo, patch1=None, *patches, **opts): ... in python, postional args must be put ahead of ...
3
votes
3answers
158 views

How to add a meta/comment to a sequence defined via def in Clojure?

I had to comment out the line below (example is from http://en.wikibooks.org/wiki/Clojure_Programming/Examples/Lazy_Fibonacci) (def fib-seq ;"Implements Fibonacci sequence (starts with 0)." ((fn ...
3
votes
6answers
3k views

.def files C/C++ DLLs

I am not understanding the point of using .def files with DLLs. It seems that it replaces the need to use explicit exports within your DLL code (ie. explicit __declspec(dllexport)) however I am ...
2
votes
4answers
80 views

how to natively implement a method like [] in Ruby?

So if index_acessor methods like [] and []= weren't hardcoded into the interpreter, is there a way to define such methods directly in Ruby? In other words, how can you define a method name where the ...
2
votes
3answers
102 views

clojure.core: . operator, defmacro and setMacro

In looking through the clojure.core file after the defmacro definition you come to the following code: (. (var defmacro) (setMacro)) What does this mean and do?
2
votes
4answers
226 views

Scala public methods: ';' expected but 'def' found

I wrote this method: public def getXScaleFactor(panelWidth: Int): Double = { return (panelWidth / (samplesContainer[0].length.asInstanceOf[Double])) } and I have problems with compilation: ...
2
votes
3answers
143 views

Should I be using “global” or “self.” for class scope variables in Python?

Both of these blocks of code work. Is there a "right" way to do this? class Stuff: def __init__(self, x = 0): global globx globx = x def inc(self): return globx + 1 ...
2
votes
2answers
193 views

Convert 32 bits .def file to 64 bits

In my company we use .def files to specify the symbols that need to be exported. (I wish I could use a more modern and automated technique, unfortunately, the guys who decide live back in the ...
2
votes
4answers
4k views

Exporting DLL C++ Class , question about .def file

I want to use implicit linking in my project , and nmake really wants a .def file . The problem is , that this is a class , and I don't know what to write in the exports section . Could anyone point ...
1
vote
0answers
53 views

Intellisense Errors on .DEF file

I'm trying to learn C++, particularly exporting functions from my library. I have set up a module definition (.DEF) file which specifies the exported functions. The syntax is compliant with what I ...
1
vote
1answer
60 views

Is there any difference between declaring a variable with 'def' and declaring it with a known type?

Assuming I have a defined class class MyClass { } Is there a hit in performance in runtime in doing def c = new MyClass() instead of MyClass c = new MyClass()? Or is it exactly the same?
1
vote
2answers
50 views

Namerror when trying to use def

I keep getting "NameError: name 'get_length' is not defined". What's wrong with my code? def get_length_get_width_get_depth(ask_for_length,ask_for_width,ask_for_depth): "Ask the user for the ...
1
vote
1answer
47 views

Using `#` in definition

I realized it is possible to have # in a definition: def Foo#bar "blah blah" end But I am not sure what it means. I expected an instance method bar defined on class Foo, but that does not seem ...
1
vote
2answers
101 views

Infer variable type in Java / Eclipse, like C#'s “var”

I like "var" from C# and "def" from Groovy, and I find writing out types in Java to be a pain. Say I'm writing code like: List<LongTypeName> results = new ArrayList<LongTypeName>(); or ...
1
vote
3answers
83 views

Python: login using 1 username but different passwords

I am trying to write a function that will understand how to login using one username but several passwords . import sys def login(): username = raw_input('username') password = ...
1
vote
2answers
38 views

Scopes in a class in Python

Please have a look at this: class Car: def __init__(self, bid_code): self.__bid = bid_code def doit(self, cry): self.bid_it = cry def show_bid(self): print ...
1
vote
2answers
217 views

Calling a def as a function in a Mako template

I'd like to use a def as a function, and call it from an if block: <%def name="check(foo)"> % if len(foo.things) == 0: return False % else: % for thing in foo.things: ...
1
vote
4answers
184 views

python - returns incorrect positive #

what i'm trying to do is write a quadratic equation solver but when the solution should be -1, as in quadratic(2, 4, 2) it returns 1 what am i doing wrong? #!/usr/bin/python import math def ...
1
vote
3answers
156 views

hash as def argument

Is the following possible in any way? I keep running into a odd number list for Hash def thores_hammer(bling) hammer_bling = { bling } end thores_hammer :rubys => 5, :emeralds ...
0
votes
2answers
21 views

Rails 3: conditional sum before_save

I've spent quite sometime searching SO, but I'm stuck... I'd like to calculate the base_price for product before product is saved in the database, but I'd like to make the sum conditional on the ...
0
votes
1answer
28 views

How to specify the exact dll exports in MinGW?

I'm trying to build a DLL with MinGW and I need to augment the exports it is generating. I need to assign specific ordinal numbers to certain exported functions. I created a .DEF file, but I can't ...
0
votes
2answers
117 views

Basic python, def function and recall for a text-menu

I've just started playing around with python and was looking for advice. The problem is with the MENU(), for some reason on the 7th line I get a syntax error $ MENU() Not sure what I'm doing ...
0
votes
1answer
83 views

C++ - class method's won't to export from dll (VS - win)

I've created example C++ project in Visual Studio of dll type. It contains header file SqlLtDb.h: using namespace std; // This class is exported from the SqlLtDb.dll class CSqlLtDb { ...
0
votes
4answers
134 views

Linking to a DLL with a DEF file instead of a LIB file?

I have learned that you can: Convert a .DLL file into a .DEF file, which includes its exports (Edit: This doesn't work with many conventions) Convert a .DEF file into a .LIB file, which you can use ...
0
votes
2answers
87 views

Deciding whether def should belong to controller or model (Ruby)

So its a fairly noobish question. Im still coding a web spider and have lots of questions but the first one I want to ask is how do you decided whether a method should belong to a controller or a ...
0
votes
4answers
86 views

Why is this def function not being executed in Python?

Python is simply bringing up another prompt when I enter the following piece of code from Zed Shaw exercise 18. # this one is like our scripts with argv def print_two(*args): arg1, arg2 = args ...
0
votes
2answers
323 views

Visual Studio Advanced Query Builder MySql adding “def.” before table names

From within the .xsd designer I drag a table from a MySql connection on the list and begin configure it. When I open the Advanced Query builder, The sql is changed from what was in the initial box ...
0
votes
3answers
447 views

Run bat file in c# with .exe and .def code

How can I run a bat file in C# that has the following code: tekla_dstv2dxf.exe -cfg tekla_dstv2dxf_metric.def -m batch -f *.nc1 or alternatively replicate that code in my c# program. Using this ...
0
votes
2answers
114 views

Calling def in Ruby for exporting CSV

I currently have some code which iv used to export a table from the data I have require 'fastercsv' def dump_csv @users = User.find(:all, :order => "lastname ASC") @outfile = "members_" + ...
0
votes
1answer
597 views

How to use the .def file for explicit linking?

I am facing the the problem to link to a third party dll. It is windows mobile application, where I am try to link to this third party dll. Here first I had the dll and lib file. I was not able to ...