Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

_mu(3) [debian man page]

_Mu<; _Arg, _IsBindExp, _IsPlaceholder >(3cxx)							     _Mu< _Arg, _IsBindExp, _IsPlaceholder >(3cxx)

NAME
_Mu< _Arg, _IsBindExp, _IsPlaceholder > - SYNOPSIS
Detailed Description template<typename _Arg, bool _IsBindExp = is_bind_expression<_Arg>::value, bool _IsPlaceholder = (is_placeholder<_Arg>::value > 0)>class _Mu< _Arg, _IsBindExp, _IsPlaceholder > Maps an argument to bind() into an actual argument to the bound function object [TR1 3.6.3/5]. Only the first parameter should be specified: the rest are used to determine among the various implementations. Note that, although this class is a function object, it isn't entirely normal because it takes only two parameters regardless of the number of parameters passed to the bind expression. The first parameter is the bound argument and the second parameter is a tuple containing references to the rest of the arguments. Definition at line 963 of file functional. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Sun Jan 6 2013 _Mu< _Arg, _IsBindExp, _IsPlaceholder >(3cxx)

Check Out this Related Man Page

__gnu_cxx::subtractive_rng(3)				     Library Functions Manual				     __gnu_cxx::subtractive_rng(3)

NAME
__gnu_cxx::subtractive_rng - SYNOPSIS
Inherits std::unary_function< _Arg, _Result >. Public Types typedef _Arg argument_type typedef _Result result_type Public Member Functions subtractive_rng (unsigned int __seed) subtractive_rng () void _M_initialize (unsigned int __seed) unsigned int operator() (unsigned int __limit) Detailed Description The subtractive_rng class is documented on SGI's site. Note that this code assumes that int is 32 bits. Definition at line 352 of file ext/functional. Member Typedef Documentation template<typename _Arg, typename _Result> typedef _Arg std::unary_function< _Arg, _Result >::argument_type [inherited] argument_type is the type of the argument Definition at line 104 of file stl_function.h. template<typename _Arg, typename _Result> typedef _Result std::unary_function< _Arg, _Result >::result_type [inherited] result_type is the return type Definition at line 107 of file stl_function.h. Constructor &; Destructor Documentation __gnu_cxx::subtractive_rng::subtractive_rng (unsigned int__seed) [inline] Ctor allowing you to initialize the seed. Definition at line 394 of file ext/functional. __gnu_cxx::subtractive_rng::subtractive_rng () [inline] Default ctor; initializes its state with some number you don't see. Definition at line 398 of file ext/functional. Member Function Documentation unsigned int __gnu_cxx::subtractive_rng::operator() (unsigned int__limit) [inline] Returns a number less than the argument. Definition at line 363 of file ext/functional. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Jun 10 2014 __gnu_cxx::subtractive_rng(3)
Man Page

14 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

grep multiple lines

Hey guys: I've been meaning to post this question for awhile...it is regarding grep. Let's say for example that the following entry is in logxx: Wed Feb 2 07:44:11 <vsm> 91030 Line 5 Severity 1 Vps 6 Call Answered - DN:8753101 CLID:5164665761 PI:83 If I do a grep 91030... (27 Replies)
Discussion started by: cdunavent
27 Replies

2. What is on Your Mind?

How much snow do you have where you are?

It was shaping up to be another snowless holiday season and then it just began snowing, slowly, but continuously for the last 2 days, with no sign of stopping. We're up to 2 feet now, 4 in some places -- like in front of my workplace's door... I had to walk to work, following the ruts in the road! (27 Replies)
Discussion started by: Corona688
27 Replies

3. What is on Your Mind?

How Much Vacation Do You Take Every Year?

Please vote and comment: How much vacation from work do you take every year? (40 Replies)
Discussion started by: Neo
40 Replies

4. Shell Programming and Scripting

Sending email with multiple files..

Hello,, I am loading data into the 4 tables from 4 different input files. The data gets loaded, and the e-mail is also sent to the user, but the log files for all the 4 files is not been sent.. I am trying to send e-mail to users with the log file as attachment. The script is as follows:... (30 Replies)
Discussion started by: msrahman
30 Replies

5. Filesystems, Disks and Memory

QEMU not booting my image

hello all, I have been trying to boot an image (.IMG) using qemu, for quite some time now and i can't seem to get it to work. I've been able to boot from the Windows XP CD, the Debian iso image, etc, so I know qemu is configured properly and is working. But when it come to booting an image that I... (34 Replies)
Discussion started by: neur0n
34 Replies

6. Shell Programming and Scripting

awk - treating remaining columns as one

Hi all, For no particular reason, I would like to use awk on a file that contains multiple columns, but let's say only columns 1 and 2 have some text values, and the remainder of the line contains text that I would like to treat as one column, considering I have spaces as delimiter for the... (33 Replies)
Discussion started by: ppucci
33 Replies

7. Shell Programming and Scripting

How to write bash script for creating user on multiple Linux hosts?

I wonder whether someone can help me with what I'm trying to achieve Basically, the objective is one script to create new user on more than 70 linux hosts if required. Everything works apart from the highlighted part. It gave me an output passwd: Unknown user name ''. when try to set... (35 Replies)
Discussion started by: fugeulu
35 Replies

8. What is on Your Mind?

How Can We Increase the Size of Our Community?

Any suggestions on how to increase the number of posters and contributors? Please vote and write in your suggestions. Thank you! (72 Replies)
Discussion started by: Neo
72 Replies

9. Shell Programming and Scripting

Read multiple text files and copy data to csv

hi i need to extract lines from multiple files to a csv file. for example, i have these 3 files file1.txt date:29dec1980 caller:91245824255 called:8127766 file2.txt date:11apr2014 caller:9155584558 called:8115478 file3.txt date:25jun2015 caller:445225552 called:8117485 (30 Replies)
Discussion started by: lp.descamps
30 Replies

10. Shell Programming and Scripting

Script to tar/rsync/rm multiple folder names

hi all, i attach a link with what im trying to do automatically via script but i have some questions i need answering please, bear in mind i am really new to bash scripting, the only thing i know how to do is commands in scripts like cd rm tar rsync cp stuff like that i have mutiple project... (48 Replies)
Discussion started by: robertkwild
48 Replies

11. Shell Programming and Scripting

Ranking data points from multiple files

I need to rank a large number of data points that exist in multiple files. My data points (Column 3) are based on unique values in columns 1 and 2. I need to rank the values that are in File 1, Column 3. For instance: Input File 1 AAA BBB 10 CCC DDD 16 EEE FFF 20 Input File 2 ... (47 Replies)
Discussion started by: ncwxpanther
47 Replies

12. Shell Programming and Scripting

Merge multiple lines into a single line

Hi all, I'm relatively new to scripting, I can do pretty basic things. I have a daily log file that looks like: timestamp=2017-06-28-01.01.35.080576; event status=0; userid=user1; authid=user1; application id=10.10.10.10.11111.12345678901; application name=GUI; ... (29 Replies)
Discussion started by: dwdnet
29 Replies

13. Shell Programming and Scripting

Split large xml into mutiple files and with header and footer in file

Split large xml into mutiple files and with header and footer in file tried below it splits unevenly and also i need help in adding header and footer command : csplit -s -k -f my_XML_split.xml extrfile.xml "/<Document>/" {1} sample xml <?xml version="1.0" encoding="UTF-8"?><Recipient>... (36 Replies)
Discussion started by: karthik
36 Replies

14. UNIX for Beginners Questions & Answers

How to copy a column of multiple files and paste into new excel file (next to column)?

I have data of an excel files as given below, file1 org1_1 1 1 2.5 100 org1_2 1 2 5.5 98 org1_3 1 3 7.2 88 file2 org2_1 1 1 2.5 100 org2_2 1 2 5.5 56 org2_3 1 3 7.2 70 I have multiple excel files as above shown. I have to copy column 1, column 4 and paste into a new excel file as... (26 Replies)
Discussion started by: dineshkumarsrk
26 Replies