Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
13answers
2k views

How do you implement a dispatch table in your language of choice?

A dispatch table is a data structure that associates an index value to an action. It's a rather elegant replacement for a switch-type statement. Most languages have support for dispatch tables, but ...
3
votes
3answers
80 views

Implementing a Dispatch Table in Objective-C: how to declare an array of selectors

I'm trying to implement a dispatch table, so that I can call a selector with the following example code: NSInteger i = 2; [myObject performSelector:selectors[i]]; I'm trying to store user ...
3
votes
4answers
354 views

Dispatch Table in C++

Suppose I have something like the following: class Point : geometry { ... Point(double x, double y) { } double distanceTo(Line) { } double distanceTo(Point) { } } class Line : ...
3
votes
2answers
186 views

How can I use dispatch tables in Perl? [closed]

Possible Duplicate: How do I implement dispatch tables in Perl? I have a hash table that contains commands such as int(rand()) etc. How do I execute those commands?
3
votes
7answers
524 views

How do I implement dispatch tables in Perl?

I need to write a storage related app in Perl. The app needs to upload files from the local machine to some other storage nodes. Currently, the uploading method is FTP, but in the future it may be ...
1
vote
1answer
60 views

When might a dispatch table be as good as method_missing in Ruby?

Are there any situations where a dispatch table, implemented as a hash of lambdas, might be as good, if not better, than over-riding Ruby's method_missing? I'm asking because I used this technique ...
1
vote
2answers
127 views

How can I create a dispatch table in Boo?

I'd like to be able to store a function in a hashtable. I can create a map like: hash = {} hash["one"] = def(): print "one got called" But I'm not able to call it: func = hash["one"] func() ...
1
vote
3answers
795 views

How do I create a dispatch table within a class in PHP?

Say I have a class with a private dispatch table. $this->dispatch = array( 1 => $this->someFunction, 2 => $this->anotherFunction ); If I then call $this->dispatch[1](); ...
0
votes
0answers
148 views

How can I implement a dispatch table using Perl objects?

What is the syntax for the hash value for a Perl object member subroutine reference in a dispatch table? use lib Alpha; my $foo = new Alpha::Foo; $foo->bar(); my %disp_table = ( bar => ??? ...
0
votes
3answers
114 views

How do I create a dispatch table in Perl with key contain whitespace and the subroutine accepting an array parameter?

Here's my current thinking, but I dont know how to dispatch/execute it my $key; my @arraydata; my %commandfunc{ "ab 1", \&func1(\@arraydata), "ab 2", \&func2(\@arraydata, "ab 3", ...