Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
4answers
4k views

What is the difference between a language construct and a “built-in” function in PHP?

I know that include, isset, require, print, echo, and some others are not functions but language constructs. Some of these language constructs need parentheses, others don't. require 'file.php'; ...
12
votes
7answers
12k views

What does shift() do in Perl?

what could this line possibly mean? my $x = shift ;
6
votes
3answers
552 views

In Python, are there builtin functions for elementwise boolean operators over boolean lists?

For example, if you have n lists of bools of the same length, then elementwise boolean AND should return another list of that length that has True in those positions where all the input lists have ...
6
votes
1answer
2k views

Python Subclass Builtin List

I want to subclass the list type and have slicing return an object of the descendant type, however it is returning a list. What is the minimum code way to do this? If there isn't a neat way to do it, ...
5
votes
5answers
268 views

How to stop myself overwriting Python functions when coding?

A source of constant headache when tracking down bugs in my Python code are seemingly innocuous snippets like this: list = ['a', 'b', 'c', 'c'] list(set(list)) This fails because I've overwritten ...
5
votes
1answer
158 views

non-recursively replace built-in javascript functions

I am writing some bookmarklets here and I have some questions related to built-in javascript functions. Let's say I want to replace the built-in prompt function (not necessarily in a bookmarklet). ...
4
votes
3answers
270 views

Why do we use __builtin_expect when a straightforward way is to use if-else

I came across a #define in which they use __builtin_expect. After some googling i found in GNU documentation: — Built-in Function: long __builtin_expect (long exp, long c) You may use ...
4
votes
3answers
129 views

Loadable Bash Builtin

I'm writing a strcmp bash builtin. It compiles fine, but when I try to enable it, I get: $ enable -f ./strcmp strcmp bash: enable: cannot open shared object ./strcmp: ./strcmp: only ET_DYN and ...
4
votes
2answers
168 views

Where can I find information about Perl's special variables?

Perl has quite a few special variables such as @F, $!, %! ... etc. Where are all Perl's special variables documented?
4
votes
5answers
513 views

What's the point of strspn?

At work today we were trying to come up with any reason you would use strspn. I searched google code to see if it's ever been implemented in a useful way and came up blank. I just can't imagine a ...
3
votes
1answer
56 views

Trailing newlines and the bash 'read' builtin

In bash, this works: echo -n $'a\nb\nc\n' | while read x; do echo = $x =; done The while loops through three times = a = = b = = c = But imagine a text file that doesn't have the conventional ...
3
votes
4answers
194 views

How can I read documentation about built in zsh commands?

It's frustrating when I do something like man bindkey and i get: BUILTIN(1) BSD General Commands Manual BUILTIN(1) NAME builtin, !, %, ., :, @, {, }, alias, alloc, ...
2
votes
1answer
50 views

invoking bash builtins from tclsh

I have a tclsh script in which I needed to execute certain command in background. I could achieve this from tcl using exec command: exec myprog &. But how can I wait for myprog to complete from ...
2
votes
1answer
88 views

Extract file extension from file path

How can I extract the extension of a file given a file path as a character? I know I can do this via regular expression, but wondering if there's a built-in function to deal with this?
2
votes
3answers
89 views

Python builtin “all” with generators

I have the following problem with python's "all" and generators: G = (a for a in [0,1]) all(list(G)) # returns False - as I expected But: G = (a for a in [0,1]) all(G) # returns True! ...
2
votes
1answer
673 views

MSVC equivalent to __builtin_popcount?

What is the equivalent to __builtin_popcount as found in GCC and Clang, for MSVC-10?
2
votes
1answer
173 views

Python Profiling In Windows, How do you ignore Builtin Functions

I have not been capable of finding this anywhere online. I was looking to find out using a profiler how to better optimize my code, and when sorting by which functions use up the most time ...
2
votes
2answers
564 views

Is there a function to check if an object is a builtin data type?

I would like to see if an object is a builtin data type in C# I don't want to check against all of them if possible. That is, I don't want to do this: Object foo = 3; Type ...
2
votes
3answers
374 views

How can I redefine 'open' properly in Perl?

Some time ago, I ask a question: How do I redefine built in Perl functions? And the answers have served me well. I have a package that overrides Perl's 'open' function enabling me to log file access. ...
1
vote
3answers
50 views

Caching disk operations

I might need to do multiple reads over a big code-base, and with different tools. I then thought that is a real waste to read on disk so many times while the text won't change, so I wrote the ...
1
vote
2answers
182 views

Is it possible to overwrite window.location function with a custom function?

is it possible to disable, or even better, replace with a custom function, window.location? this question is related: Disable a built-in function in javascript (alert) while it works quite well for ...
1
vote
1answer
105 views

Python range() builtin function, erm… malfunctioning with Django

What, if anything, is wrong with this line of python code: daterange = [begin + timedelta(n) for n in range((end - begin).days)] Where begin and end are datetime.date objects with valid values. ...
1
vote
3answers
97 views

Why does “read” behave differently with the same input?

Why does read behave differently with the same input from a pipe and a heredoc: printf "" | while read line; do echo "line=$line"; done # outputs nothing while read line; do echo "line=$line"; ...
1
vote
1answer
129 views

Problem subclassing random.Random (python /CPython 2.6)

I have tried this code snippet in CPython 2.6 (original python implementation): from random import Random, random class Uniform(Random, object): def __init__(self, min, max): self._min ...
1
vote
6answers
99 views

What builtin functions shouldn't be run by untrusted users?

I'm creating a corewars type application that runs on django and allows a user to upload some python code that will control their character. Now, I know the real answer to this is that as long as I'm ...
0
votes
0answers
11 views

Is it possbile to import and call python modules in builtin functions?

http://hg.python.org/cpython/file/b9a95ce2692c/Python/bltinmodule.c 1482 static PyObject * 1483 builtin_open(PyObject *self, PyObject *args, PyObject *kwds) 1484 { // Can I do the ...
0
votes
1answer
130 views

How to launch a Bash function using Git alias

I want to use a Git alias in ~/.gitconfig so that it calls a bash function, if it is defined, otherwise call the regular git checkout. This is what I have devised: cat ~/.gitconfig ... [alias] ... ...
0
votes
2answers
99 views

How can I eliminate my custom __import__ hook from Python backtraces

I'm the implementor of the Lazy Python Reloader, and it's all working wonderfully, except that once I overrode the builtin __import__ function, I started seeing my replacement in tracebacks whenever ...
0
votes
1answer
413 views

Is gcc's atomic test and set builtin the same as an atomic fetch and store operation?

I came across an atomic "fetch and store" instruction in the description of an MCS lock. From what I gather, this atomically writes a value to a memory location and returns the original value of that ...
0
votes
2answers
611 views

__builtin_expect from GCC with probability

__builtin_expect from GCC can be used by programmer to show which variants are expected to be very often and which are rare. But __builtin_expect have only "true" and "false" (0% or 100% ...
0
votes
3answers
1k views

How to find a value in array and remove it by using PHP array functions

How to find a value exist in an array and how to remove it. If any php builtin array functions for doing this. After removing I need the sequential index order. any body knows please help me.
0
votes
1answer
156 views

builtin iphone popups handling

Good Day! I have a question regarding iphone development. i am building an app for iphone which uses gps, i can tackle the gps from my app via alert that whether user wants to use gps or not. as you ...
0
votes
6answers
2k views

How do I use gcc builtin __sync_bool_compare_and_swap in g++ on MacOSX?

I have some code that uses: __sync_bool_compare_and_swap it compiles fine on Linux. But when I try to compile it on MacOSX in g++, I get: error: ‘__sync_bool_compare_and_swap’ was not declared in ...
0
votes
3answers
319 views

Inheriting directly from a built-in type versus its wrapper class in Python

I'm currently reading Dive Into Python by Mark Pilgrim, and have gotten to the section on inheritance. In section 5.5, Pilgrim mentions the differences between inheriting from the wrapper class ...
0
votes
2answers
216 views

Distributing loadable builtin bash modules

I've written a built-in for bash which modifies the 'cd' command, a requirement for my software. Is there a way to actually distribute a loadable independently of bash itself? I'd ideally like to ...
-1
votes
3answers
119 views

Python: Inheriting builtin types dict and list [closed]

I have always been confused and falling over the minute details while inheriting the builtin types in Python e.g. list and dict. Can you please point to the tutorials and docs which give a ...