Skip to main content

Questions tagged [splice]

splice copies data between two file descriptors of which one must be a pipe. Effectively, this is equivalent to a userland function that performs a read/write operation to and from a kernel-owned buffer.

2 votes
2 answers
90 views

How do I remove random elements in one-go from an array using splice in Perl?

I have an array as below : my @arr = qw (ram sam ham dam yam fam lam cam) I want to remove sam , yam and lam from the above array using splice. I am using below code to do it : # first getting the ...
A.G.Progm.Enthusiast's user avatar
0 votes
0 answers
26 views

Why is writing a file using Splice slower when done asynchronously?

I'm trying to make a program to write files efficiently from data received in a socket. My approach here is to use the splice Linux syscall, so I made a quick program to do this, and then I tried ...
syzztem's user avatar
  • 72
0 votes
1 answer
55 views

Split a array javascript using regular expressions

I am trying to split this array in 2 or 3 parts and stuck. This is what I have so far, if I use one of the splice lines it works but if I use all to test cases then does not. I want to: grab ...
Jermain Singleton's user avatar
1 vote
1 answer
72 views

Common Lisp Looping: How did I force the loop macro not to iterate over its input list?

I wrote the code below (INFIX-LINKING-LEAFS - the last function - is the first caller with the loop). I'm sorry if it is too much code (five functions) for the purpose of answering my question. I ...
Demihm Seinname's user avatar
1 vote
0 answers
22 views

Excel Data input or Graph

how to visualize uniaxial cyclic loading 0→(ε=0.02↔ ε=-0.005) x20 cycleenter image description here somewhat like this but strain control is 2% and -0.5% stress strain graph for cyclic loading ...
Nurul Alma's user avatar
-1 votes
1 answer
35 views

How to use toSpliced() without copying the type?

I want to try out the toSpliced() method: const a = [1, 2] as const const b = a.toSpliced(0, 1, 'hi') This gives error: Argument of type '"hi"' is not assignable to parameter of type '1 | ...
Ooker's user avatar
  • 2,625
0 votes
1 answer
36 views

best way to remove a word from an array in a react app

I'm working on a speed typing game using React and I have this function that removes the word from the array after it's either skipped or entered correctly. I think there's a better way to do it by ...
Taariq Elliott's user avatar
3 votes
4 answers
107 views

Based on a condition, how to remove an item from the processed array and move it to another array?

I have two arrays in my react component as follows ... const [Selected, setSelected] = React.useState([]); const [NonSelected, setNonSelected] = React.useState([]); const Tmp_Selected = [ { "...
SM079's user avatar
  • 622
0 votes
0 answers
25 views

Push quantity value to href query string on change event

I need to update an add to cart url every time the user selects an option from 4 select elements and push a quantity value at a specific index that matches an ID. The select elements all contain the ...
Mat's user avatar
  • 1
-1 votes
4 answers
99 views

Dose splice works when the second parameter is an array.length?

I want to implement a function that takes an array and some other arguments then removes the other arguments from that array. So i used the rest parameter for the second argument then used Array.from ...
Huda Abdullah's user avatar
1 vote
1 answer
69 views

Google Apps Script splice method oddness

splice seems to be creating a dynamic relationship between spliced in elements and the elements they were spliced from ... ??? Say I have an array Array = [ [1 , 2 , 3] ] I want to duplicate this ...
JOD's user avatar
  • 13
0 votes
1 answer
48 views

deleteArrayElements(number = 6, startIndex = 0, everyIth =2) should delete every second element out of the first 6 elements of the passed array

Implement the function deleteArrayElements() that reads N elements from the array starting from the given start index i and deletes every x-th element within this sub-array. The parameter startIndex ...
Avissa Taghizadeh's user avatar
0 votes
0 answers
29 views

Netty Splice operation not working in channelRead

I am using Splice Operation to transfer data from one inbound channel to outbound channel and vice versa using Splice operation to improve performance. Inbound channel is between client and proxy ...
nakulmatta's user avatar
0 votes
1 answer
50 views

Vue Destroy Sortable Element

Summary Create Panel, and add Layers to panel. When trying to delete a layer the last layer in the panel is deleted, instead of the layer item selected for destruction. Full Issue: Understanding ...
Jacques Joubert's user avatar
0 votes
4 answers
39 views

Javascript splice function not working when combining array elements together

I'm writing a calculator app. Buttons in html add elements to an array. When the user hits =, it will iterate through the array and combine numbers that have no mathematical symbol between them. ...
IronLightning85's user avatar

15 30 50 per page
1
2 3 4 5
51