Tagged Questions
2
votes
3answers
202 views
C++ - extending a data type
Is there a way to extend a data type in C++, like you can in JavaScript?
I would imagine this is kind of like this:
char data[]="hello there";
char& capitalize(char&)
{
//Capitalize the ...
1
vote
1answer
108 views
extending global c variable array with swig and python
I have a global variable array in c that I'd like to pull into python. And I'm having difficulties with varout typemap:
/* example.c */
int foo[] = {0, 1};
And here is the very vanilla interface:
...
4
votes
4answers
3k views
Ways to extend Array object in javascript
i try to extend Array object in javascript with some user friendly methods like Array.Add() instead Array.push() etc...
i implement 3 ways to do this.
unfortunetly the 3rd way is not working and i ...
4
votes
1answer
335 views
How should I go about using jQuery extend when my config file has a normal array in it?
Seems $.extend uses only the keys of its input to determine what to overwrite. So when my config looks like this
var config = {
"numeric" : false,
"keycode_whitelist" : [
37, 39, // ...
1
vote
3answers
5k views
How to extend an array in Java without changing its name
I wonder if it's possible to extend an array in Java but without changing its name, since I have multiple methods linked to this array. I was thinking of creating a new array with the same name but ...
0
votes
3answers
301 views
Array variable input help [close]
First of all, I have to create an array of length n, input variables to fill that array, then at array location k, I have to push all arrays location k and up by 1 and put the value of x into array ...
12
votes
3answers
9k views
Syntax to insert one list into another list in python [closed]
What is the syntax to insert one list into another list in python?
1
vote
2answers
6k views
jQuery getting value of array by index
using jQuery, I'm trying to get values of fileTypes by using an index. I'm not sure how to do go about doing this but so far I've tried settings.fileTypes[0] which does not work. Any help is ...
4
votes
4answers
2k views
jquery .serializeArray(); add another value on top for passing to ajax
im doing following
var data = $(form).serializeArray();
// now i want to add another value on this data
data.username = 'this is username';
i want to know how can i add another value after doing ...