What's new

PAF Chief visits Saudi Ministry of Defence

thats a good one.

else
if (yemen)
{return 0}

exit

PakArmy army;
PAF airforce;
PN navy;
Military mil{army, airforce, navy};
std::vector<HouthiTarget> houthis;
PopulateTargets(houthis);

if (std::all_of(houthis.begin(), houthis.end(),
[&mil] (auto&& target)
{
return mil.destroy(std::move(target));
})
{
mil.upgrade();
}

think of it this way

If PAF's assistance was required, (and it will be required)
would the Americans allow PAF pilots on F-15s or Europeans on Typhoons ?

I am hoping Thunders will get a chance.
 
If Saudi's had any wits there could have been a PAK-ARAB Aeronautical Complex by now. We'd have been building latest fighter jets with no shortage of human resources or finances together. In fact, the "OIC" could have funded the project as a collective goodwill joint Muslim-Unity project. We could have hired Iranian scientists as well.

There's never been a shortage of scientists in the Muslim world for the past 1400 years and it would have helped Saudis in their current turmoil. A showcase of modern "Purchased" weapons only sit idle in a glass case of display. Saudi's need us now, sure, but I'm wondering whether its too late now...
They gave the Last Shah of Iran only "two weeks"....

PakArmy army;
PAF airforce;
PN navy;
Military mil{army, airforce, navy};
std::vector<HouthiTarget> houthis;
PopulateTargets(houthis);

if (std::all_of(houthis.begin(), houthis.end(),
[&mil] (auto&& target)
{
return mil.destroy(std::move(target));
})
{
mil.upgrade();
}



I am hoping Thunders will get a chance.
Arkadash-im, these new syntaxes are too much for some folks like me!!! Can you simplify it in something like FORTRAN-77????
 
If Saudi's had any wits there could have been a PAK-ARAB Aeronautical Complex by now. We'd have been building latest fighter jets with no shortage of human resources or finances together. In fact, the "OIC" could have funded the project as a collective goodwill joint Muslim-Unity project. We could have hired Iranian scientists as well.

There's never been a shortage of scientists in the Muslim world for the past 1400 years and it would have helped Saudis in their current turmoil. A showcase of modern "Purchased" weapons only sit idle in a glass case of display. Saudi's need us now, sure, but I'm wondering whether its too late now...
Not sure if you're aware of this but Islamic Caliphate ended in 1922 and no Muslim nation has tried to revive it, not even Saudi Arabia.

I don't think Pakistanis, Afghans, Bangladeshis, etc. want their country to become part of an Islamic Empire that has a capital in some other part of the world.
 
Arkadash-im, these new syntaxes are too much for some folks like me!!! Can you simplify it in something like FORTRAN-77????

Explanation given below for each line. Google for any terms you are not familiar with.

// Create Pak Army object
PakArmy army;
// Create PAF object
PAF airforce;
// Create Pak Navy object
PN navy;
// Pass individual forces to an overall military object, using the C++ uniform initializer syntax.
Military mil{army, airforce, navy};
// Create an empty vector of Houthi targets
std::vector<HouthiTarget> houthis;
// Retrieve list of Houthi targets
PopulateTargets(houthis);

// std::all_of takes an iterator range in the first two parameters, and for each element applies
// the functor passed in the third parameter. In this case, the functor is a C++14 generic
// lambda whose single parameter is a forwarding reference.
// If the functor returns true for all elements in the range, then std::all_of will also return true
// otherwise it will return false.
if (std::all_of(houthis.begin(), houthis.end(),
[&mil] (auto&& target)
{
// The forwarding reference allows us to utilize move semantics when passing the target
// to the destroy method of mil object. This passes ownership of the targets to the mil
// object. The destroy method will return true if target is successfully destroyed. Remember
// we have passed all the forces to mil, so internally, destroy can use them as it likes.
return mil.destroy(std::move(target));
})
{
// If all targets successfully destroyed, upgrade the military.
mil.upgrade();
}
 
24 Oct, 2018

paf-chief-visits-saudi-ministry-of-defence-1540391046-2992.jpg


Riyadh - Chief of the Air Staff, Air Chief Marshal Mujahid Anwar Khan, who is on an official visit of Saudi Arabia, visited Ministry of Defence today.

READ MORE:Saudi Arabia gives $3 billion to Pakistan
During the visit, he also held meeting Assistant Minister of Defence of Kingdom of Saudi Arabia Muhammad bin Abdullah Al Ayesh.

Both the dignitaries deliberated on defence and security cooperation, regional stability and steps towards strengthening the bilateral ties between the two countries in general and air forces in particular.

READ MORE:PM Imran Khan speaks at question answer session at Future Initiative Conference in Riyadh
The Air Chief reiterated goodwill of the government and the people of Pakistan and thanked the Saudi leadership for their support to Pakistan and its armed forces. Earlier, the Air Chief also met Chief of General Staff of the Armed Forces of the Kingdom of Saudi Arabia, General (Staff) Fayyadh Bin Hamid bin Ragad Al- Rwaili.

Is KSA funding something for PAF like EFT or tech from Israel etc.???

Because as per flight monitoring website a Israeli plane have stayed for 10 hours in Islamabad.
 
Is KSA funding something for PAF like EFT or tech from Israel etc.???

Because as per flight monitoring website a Israeli plane have stayed for 10 hours in Islamabad.
Why r u faning a fake basless propaganda on each thread . Intentions ?
 
Explanation given below for each line. Google for any terms you are not familiar with.

// Create Pak Army object
PakArmy army;
// Create PAF object
PAF airforce;
// Create Pak Navy object
PN navy;
// Pass individual forces to an overall military object, using the C++ uniform initializer syntax.
Military mil{army, airforce, navy};
// Create an empty vector of Houthi targets
std::vector<HouthiTarget> houthis;
// Retrieve list of Houthi targets
PopulateTargets(houthis);

// std::all_of takes an iterator range in the first two parameters, and for each element applies
// the functor passed in the third parameter. In this case, the functor is a C++14 generic
// lambda whose single parameter is a forwarding reference.
// If the functor returns true for all elements in the range, then std::all_of will also return true
// otherwise it will return false.
if (std::all_of(houthis.begin(), houthis.end(),
[&mil] (auto&& target)
{
// The forwarding reference allows us to utilize move semantics when passing the target
// to the destroy method of mil object. This passes ownership of the targets to the mil
// object. The destroy method will return true if target is successfully destroyed. Remember
// we have passed all the forces to mil, so internally, destroy can use them as it likes.
return mil.destroy(std::move(target));
})
{
// If all targets successfully destroyed, upgrade the military.
mil.upgrade();
}
Brother you have not described PakArmy, Pak Navy, PakAirforce classes and neither included any namespaces.
 
Back
Top Bottom