Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
8answers
2k views

Is 'shift' evil for processing Perl subroutine parameters?

I'm frequently using shift to unpack function parameters: sub my_sub { my $self = shift; my $params = shift; .... } However, many on my colleagues are preaching that shift is actually ...
8
votes
1answer
312 views

Is it possible to unpack a tuple without using variables?

I'm using the os.path.split() function on a path in my program to get the filename and pathname of a file then passing them into another method, but my current solution seems rather ugly: path = ...
4
votes
5answers
221 views

use of the bitwise operators to pack multiple values in one int

Low level bit manipulation has never been my strong point. I will appreciate some help in understanding the following use case of bitwise operators.Consider... int age, gender, height, packed_info; ...
4
votes
2answers
682 views

How can I explode a tuple so that it can be passed as a parameter list?

Let's say I have a method definition like this: def myMethod(a, b, c, d, e) Then, I have a variable and a tuple like this: myVariable = 1 myTuple = (2, 3, 4, 5) Is there a way I can pass explode ...
4
votes
3answers
459 views

Javascript equivalent of Python's sequence unpack: a,b=(1,2)?

is there a javascript equivalent to unpack sequences like in python (a,b=(1,2))? Thanks in advance.
3
votes
2answers
245 views

Common Lisp — List unpacking? (similar to Python)

In Python, assuming the following function is defined: def function(a, b, c): ... do stuff with a, b, c ... I am able to use the function using Python's sequence unpacking: arguments = (1, 2, ...
3
votes
2answers
180 views

Unpacking a 1-tuple in a list of length 1

Suppose I have a tuple in a list like this: >>> t = [("asdf", )] I know that the list always contains one 1-tuple. Currently I do this: >>> dummy, = t >>> value, = dummy ...
3
votes
7answers
319 views

How do I convert a tuple of tuples to a one-dimensional list using list comprehension?

I have a tuple of tuples - for example: tupleOfTuples = ((1, 2), (3, 4), (5,)) I want to convert this into a flat, one-dimensional list of all the elements in order: [1, 2, 3, 4, 5] I've been ...
3
votes
5answers
694 views

Python-like list unpacking in C#?

In python, I can do something like this: List=[3, 4] def Add(x, y): return x + y Add(*List) #7 Is there any way to do this or something similar in C#? Basically I want to be able to pass a ...
2
votes
2answers
63 views

Subsetting a vector using another boolean vector in R

Using the following two R vectors, I want to extract a subset of valMe using the boolean values in boolMe. In addition, I would like to have two possible outputs, one where the FALSE values in boolMe ...
2
votes
5answers
168 views

How to unpack a list?

When extracting data from a list this way line[0:3], line[3][:2], line[3][2:] I receive an array and two variables after it, as should be expected: (['a', 'b', 'c'], 'd', 'e') I need to ...
2
votes
2answers
361 views

Unpacking argument lists for ellipsis in R

I am confused by the use of the ellipsis (...) in some functions, i.e. how to pass an object containing the arguments as a single argument. In Python it is called "unpacking argument lists", e.g. ...
2
votes
1answer
366 views

Python pack arguments?

is to possible to "pack" arguments in python? I have the following functions in the library, that I can't change (simplified): def g(a,b=2): print a,b def f(arg): g(arg) I can do ...
2
votes
2answers
13k views

Unpacking rar on iPhone

I created little download application with music player and now I want it to unpack archives, because quite often mp3s are packed in archive and you can play them before you unpack the archive. I ...
2
votes
7answers
622 views

Unpacking an executable from within a library in C/C++

I am developing a library that uses one or more helper executable in the course of doing business. My current implementation requires that the user have the helper executable installed on the system ...
1
vote
2answers
57 views

Representing a vector-valued function in matlab

What is the best way to translate the following brief python/numpy code to matlab from numpy import * F = lambda x, y: (-y, x) points = array(meshgrid([1,2,3], [4,5,6,7])) vx, vy = F(*points) print ...
1
vote
1answer
270 views

Why does running rake gems:unpack result in a Gem::FilePermissionError

I'm attempting to upgrade the friendly_id gem in a rails project. I have removed the old gem from the vendor directory, installed the new gem from rubygems.org. When I type: rake gems:unpack I get ...
1
vote
5answers
385 views

How to pick certain elements of x-tuple returned by a function?

I am a newbie to Python. Consider the function str.partition() which returns a 3-tuple. If I am interested in only elements 0 and 2 of this tuple, what is the best way to pick only certain elements ...
1
vote
2answers
875 views

Maven dependencies jar not usable

EDIT: I am basically running into the following documented issue. I am using the maven assembly plugin to generate a jar file that includes my dependencies so that my project can be run from a single ...
1
vote
2answers
706 views

maven-war-plugin vs. “Unexpected end of ZLIB input stream”

im using maven-war-plugin and sometimes i get Unexpected end of ZLIB input stream when deploying to jboss, its because file is made in jboss directory and not moved/copied there, is there any way to ...
0
votes
0answers
28 views

how to unpack a dll file which is UPX packed but also the headers are changed?

I have a file which is UPX packed. Is there any way I can change the headers and still find it as UPX packed? And how do I unpack it ? I tried a lot of tutorials and I am fed up as all explain the ...
0
votes
1answer
44 views

calling row data from successive months in successive yrs and writing it into columns?

I have spread sheets of climate data for which, essentially, I need to transpose parts of rows into columns and vice versa. Unfortunately, the format is somewhat awkward. The data came to me with ...
0
votes
2answers
47 views

Arbitrary Amount of Tuple Unpacking With Common Date

Input datas2 = [[("01/01/2011", 1), ("02/02/2011", "No"), ("03/03/2011", 11)], [("01/01/2011", 2), ("03/03/2011", 22), ("22/22/2222", "no")], [("01/01/2011", 3), ("03/03/2011", 33), ("22/22/2222", ...
0
votes
0answers
33 views

Packing Process From Tga Files

I have some code, It makes unpacking from a tex file as tga files I want to reverse it.. I mean, Which I choose tga files, It must pack as tex file this is code what I said ...
0
votes
4answers
163 views

Python idiomatic unpacking assignment or False

If function returns a two value list or tuple on success or False on failure, how can I best unpack the return list into two variables while also checking for False? def get_key_value(): if (cond ...
0
votes
3answers
2k views

Python update object from dictionary

Is there a built-in function/operator I could use to unpack values from a dictionary and assign it into instance variables? This is what I intend to do: c = MyClass() c.foo = 123 c.bar = 123 # ...