answer
stringlengths
15
1.25M
// ver 1.1 #include<iostream> #include<sstream> #include<string> #include<fstream> #include<cmath> #include<iomanip> #include<stdlib.h> #include "main.h" #include "readindata.h" #include "arsenal.h" #include "ParameterReader.h" #include "Table.h" using namespace std; read_FOdata::read_FOdata(ParameterReader* paraRdr_in, string path_in) { paraRdr = paraRdr_in; path = path_in; mode = paraRdr->getVal("hydro_mode"); turn_on_bulk = paraRdr->getVal("turn_on_bulk"); n_eta_skip = 0; } read_FOdata::~read_FOdata() { } int read_FOdata::<API key>() { int number_of_cells = 0; if (mode == 0) // outputs from VISH2+1 { Table block_file("surface.dat"); number_of_cells = block_file.getNumberOfRows(); } else if (mode == 1) // outputs from MUSIC boost-invariant { ostringstream surface_file; surface_file << path << "/surface.dat"; Table block_file(surface_file.str().c_str()); // determine number of the eta slides that are output double eta_target = block_file.get(4, 1); int i_eta = 1; int num_temp = 0; for(int i = 0; i < block_file.getNumberOfRows(); i++) { if(block_file.get(4, i+1) == eta_target) num_temp++; } number_of_cells = num_temp; n_eta_skip = block_file.getNumberOfRows()/number_of_cells; } else if (mode == 2) // outputs from MUSIC full (3+1)-d { ostringstream surface_file; surface_file << path << "/surface.dat"; Table block_file(surface_file.str().c_str()); number_of_cells = block_file.getNumberOfRows(); } return(number_of_cells); } void read_FOdata::<API key>(int length, FO_surf* surf_ptr) { if(mode == 0) // VISH2+1 outputs <API key>(length, surf_ptr); else if (mode == 1) // MUSIC boost invariant outputs <API key>(length, surf_ptr); else if (mode == 2) // MUSIC full (3+1)-d outputs <API key>(length, surf_ptr); return; } int read_FOdata::<API key>(string /* path */, int FO_length, FO_surf* surf_ptr, particle_info* particle_ptr) { int Nparticle = 0; int N_stableparticle = 0; /* disable partial chemical equilibrium Table mu_table; if(mode == 0) // VISH2+1 output { ifstream particletable("EOS/EOS_particletable.dat"); particletable >> N_stableparticle; particletable.close(); } else if (mode == 1 || mode == 2) // music output { // determine the type of the EOS ostringstream config_file; config_file << path << "/input"; ifstream configuration(config_file.str().c_str()); string temp1; string temp_name; while(!configuration.eof()) { getline(configuration, temp1); stringstream ss(temp1); ss >> temp_name; if(temp_name == "EOS_to_use") { ss >> IEOS_music; break; } } ifstream particletable; if(IEOS_music == 2) N_stableparticle = 0; else if(IEOS_music == 3) // s95p-v1-PCE150 particletable.open("EOS/EOS_tables/s95p-v1-PCE150/EOS_particletable.dat"); else if(IEOS_music == 4) // s95p-v1-PCE155 particletable.open("EOS/EOS_tables/s95p-v1-PCE155/EOS_particletable.dat"); else if(IEOS_music == 5) // s95p-v1-PCE160 particletable.open("EOS/EOS_tables/s95p-v1-PCE160/EOS_particletable.dat"); else if(IEOS_music == 6) // s95p-v0-PCE165 particletable.open("EOS/EOS_tables/s95p-v0-PCE165/EOS_particletable.dat"); else { cout << "invalid IEOS_music: " << IEOS_music << endl; exit(-1); } particletable >> N_stableparticle; particletable.close(); } */ //read particle resonance decay table for (int i = 0; i < Maxparticle; i++) particle_ptr[i].decays = 0; // to avoid infinite loop Nparticle = <API key>(particle_ptr); if(N_stableparticle > 0) { double** particle_mu = new double* [N_stableparticle]; for(int i = 0; i < N_stableparticle; i++) particle_mu[i] = new double [FO_length]; if(mode == 0) read_decdat_mu(FO_length, N_stableparticle, particle_mu); else if (mode == 1 || mode == 2) <API key>(FO_length, surf_ptr, N_stableparticle, particle_mu); <API key>(Nparticle, surf_ptr, FO_length, particle_ptr, particle_mu); for(int i = 0; i < N_stableparticle; i++) delete [] particle_mu[i]; delete [] particle_mu; } else { for(int i = 0; i < Nparticle; i++) for(int j = 0; j < FO_length; j++) surf_ptr[j].particle_mu[i] = 0.0e0; } return(Nparticle); } void read_FOdata::<API key>(int length, FO_surf* surf_ptr) { ifstream ifs("surface.dat"); std::string line; double vx, vy, gamma; for(int i = 0; i < length; ++i) { std::getline(ifs, line); std::istringstream iss(line); iss >> surf_ptr[i].tau >> surf_ptr[i].xpt >> surf_ptr[i].ypt >> surf_ptr[i].da0 >> surf_ptr[i].da1 >> surf_ptr[i].da2 >> vx >> vy >> surf_ptr[i].Edec >> surf_ptr[i].Pdec >> surf_ptr[i].Tdec >> surf_ptr[i].pi00 >> surf_ptr[i].pi01 >> surf_ptr[i].pi02 >> surf_ptr[i].pi11 >> surf_ptr[i].pi12 >> surf_ptr[i].pi22 >> surf_ptr[i].pi33 >> surf_ptr[i].bulkPi; gamma = 1./std::sqrt(1. - vx*vx - vy*vy); surf_ptr[i].u0 = gamma; surf_ptr[i].u1 = gamma*vx; surf_ptr[i].u2 = gamma*vy; surf_ptr[i].u3 = 0.; surf_ptr[i].eta = 0.; surf_ptr[i].da3 = 0.; surf_ptr[i].Bn = 0.; surf_ptr[i].muB = 0.; surf_ptr[i].muS = 0.; surf_ptr[i].pi03 = 0.0; surf_ptr[i].pi13 = 0.0; surf_ptr[i].pi23 = 0.0; } } void read_FOdata::<API key>(int length, FO_surf* surf_ptr) { cout<<" -- Read spatial positions of freeze out surface from MUSIC (boost-invariant) ..."; ostringstream surfdat_stream; double dummy; double temp; string input; double temp_tau, temp_xpt, temp_ypt, temp_eta; double eta_target; double deta = 100.0; int idx = 0; char rest_dummy[512]; surfdat_stream << path << "/surface.dat"; ifstream surfdat(surfdat_stream.str().c_str()); for(int i = 0; i < length*n_eta_skip; i++) { getline(surfdat, input, '\n' ); stringstream ss(input); ss >> temp_tau >> temp_xpt >> temp_ypt >> temp_eta; if(i == 0) eta_target = temp_eta; double eta_diff = fabs(temp_eta - eta_target); if(eta_diff < 1e-15) { // freeze out position surf_ptr[idx].tau = temp_tau; surf_ptr[idx].xpt = temp_xpt; surf_ptr[idx].ypt = temp_ypt; surf_ptr[idx].eta = temp_eta; // freeze out normal vectors ss >> surf_ptr[idx].da0; ss >> surf_ptr[idx].da1; ss >> surf_ptr[idx].da2; ss >> surf_ptr[idx].da3; // flow velocity ss >> surf_ptr[idx].u0; ss >> surf_ptr[idx].u1; ss >> surf_ptr[idx].u2; ss >> surf_ptr[idx].u3; // thermodynamic quantities at freeze out ss >> dummy; surf_ptr[idx].Edec = dummy*hbarC; ss >> dummy; surf_ptr[idx].Tdec = dummy*hbarC; ss >> dummy; surf_ptr[idx].muB = dummy*hbarC; ss >> dummy; // (e+P)/T surf_ptr[idx].Pdec = dummy*surf_ptr[idx].Tdec - surf_ptr[idx].Edec; surf_ptr[idx].Bn = 0.0; surf_ptr[idx].muS = 0.0; // dissipative quantities at freeze out ss >> dummy; // 1/fm^4 surf_ptr[idx].pi00 = dummy*hbarC; // GeV/fm^3 ss >> dummy; surf_ptr[idx].pi01 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi02 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi03 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi11 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi12 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi13 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi22 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi23 = dummy*hbarC; ss >> dummy; surf_ptr[idx].pi33 = dummy*hbarC; if(turn_on_bulk == 1) { ss >> dummy; surf_ptr[idx].bulkPi = dummy*hbarC; } else surf_ptr[idx].bulkPi = 0.0; idx++; } else { if(eta_diff < deta) deta = eta_diff; } } surfdat.close(); // take out deta weight if(n_eta_skip > 1) { for(int i = 0; i < length; i++) { surf_ptr[i].da0 = surf_ptr[i].da0/deta; surf_ptr[i].da1 = surf_ptr[i].da1/deta; surf_ptr[i].da2 = surf_ptr[i].da2/deta; surf_ptr[i].da3 = surf_ptr[i].da3/deta; } } else { // determine deta ostringstream config_file; config_file << path << "/input"; double eta_size; int n_eta; ifstream configuration(config_file.str().c_str()); string temp1; string temp_name; while(!configuration.eof()) { getline(configuration, temp1); stringstream ss(temp1); ss >> temp_name; if(temp_name == "Eta_grid_size") { ss >> eta_size; break; } } configuration.close(); configuration.open(config_file.str().c_str()); while(!configuration.eof()) { getline(configuration, temp1); stringstream ss(temp1); ss >> temp_name; if(temp_name == "Grid_size_in_eta") { ss >> n_eta; break; } } configuration.close(); deta = eta_size/n_eta; for(int i = 0; i < length; i++) { surf_ptr[i].da0 = surf_ptr[i].da0/deta; surf_ptr[i].da1 = surf_ptr[i].da1/deta; surf_ptr[i].da2 = surf_ptr[i].da2/deta; surf_ptr[i].da3 = surf_ptr[i].da3/deta; } } cout << "done" << endl; return; } void read_FOdata::<API key>(int length, FO_surf* surf_ptr) { cout<<" -- Read spatial positions of freeze out surface from MUSIC..."; ostringstream surfdat_stream; double dummy; char rest_dummy[512]; surfdat_stream << path << "/surface.dat"; ifstream surfdat(surfdat_stream.str().c_str()); for(int i=0; i<length; i++) { // freeze out position surfdat >> surf_ptr[i].tau; surfdat >> surf_ptr[i].xpt; surfdat >> surf_ptr[i].ypt; surfdat >> surf_ptr[i].eta; // freeze out normal vectors surfdat >> surf_ptr[i].da0; surfdat >> surf_ptr[i].da1; surfdat >> surf_ptr[i].da2; surfdat >> surf_ptr[i].da3; // flow velocity surfdat >> surf_ptr[i].u0; surfdat >> surf_ptr[i].u1; surfdat >> surf_ptr[i].u2; surfdat >> surf_ptr[i].u3; // thermodynamic quantities at freeze out surfdat >> dummy; surf_ptr[i].Edec = dummy*hbarC; surfdat >> dummy; surf_ptr[i].Tdec = dummy*hbarC; surfdat >> dummy; surf_ptr[i].muB = dummy*hbarC; surfdat >> dummy; //(e+p)/T surf_ptr[i].Pdec = dummy*surf_ptr[i].Tdec - surf_ptr[i].Edec; surf_ptr[i].Bn = 0.0; surf_ptr[i].muS = 0.0; // dissipative quantities at freeze out surfdat >> dummy; surf_ptr[i].pi00 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi01 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi02 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi03 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi11 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi12 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi13 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi22 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi23 = dummy*hbarC; surfdat >> dummy; surf_ptr[i].pi33 = dummy*hbarC; if(turn_on_bulk == 1) { surfdat >> dummy; surf_ptr[i].bulkPi = dummy*hbarC; } else surf_ptr[i].bulkPi = 0.0; } surfdat.close(); cout << "done" << endl; return; } void read_FOdata::read_decdat_mu(int FO_length, int N_stable, double** particle_mu) { cout<<" -- Read chemical potential for stable particles..."; ostringstream decdat_mu_stream; double dummy; decdat_mu_stream << path << "/decdat_mu.dat"; ifstream decdat_mu(decdat_mu_stream.str().c_str()); //For backward compatibility: decdat_mu.dat can be one line or FO_length lines for(int j=0; j<FO_length; j++) { decdat_mu >> dummy; //not used in the code plz ignore it if(decdat_mu.eof()) { for(int k=j; k<FO_length; k++) for(int i=0; i<N_stable; i++) particle_mu[i][k]=particle_mu[i][j-1]; break; } for(int i=0; i<N_stable; i++) { decdat_mu >> particle_mu[i][j]; } } cout<<"done" << endl; return; } void read_FOdata::<API key>(int FO_length, FO_surf* FOsurf_ptr, int N_stable, double** particle_mu) { cout << " -- Interpolating chemical potentials for stable particles (MUSIC IEOS = " << IEOS_music << ") ..."; Table mu_table; if(IEOS_music == 3) mu_table.loadTableFromFile("EOS/EOS_tables/s95p-v1-PCE150/EOS_Mu.dat"); else if (IEOS_music == 4) mu_table.loadTableFromFile("EOS/EOS_tables/s95p-v1-PCE155/EOS_Mu.dat"); else if (IEOS_music == 5) mu_table.loadTableFromFile("EOS/EOS_tables/s95p-v1-PCE160/EOS_Mu.dat"); else if (IEOS_music == 6) mu_table.loadTableFromFile("EOS/EOS_tables/s95p-v1-PCE165/EOS_Mu.dat"); double edec_pre = 0.0e0; for(int j = 0; j < FO_length; j++) { double edec = FOsurf_ptr[j].Edec; if(fabs(edec - edec_pre) > 1e-15) { edec_pre = edec; for(int i = 0; i < N_stable; i++) particle_mu[i][j] = mu_table.interp(1, i+2, edec); } else { for(int i = 0; i < N_stable; i++) particle_mu[i][j] = particle_mu[i][j-1]; } } cout<<"done" << endl; return; } int read_FOdata::<API key>(particle_info* particle) { double eps = 1e-15; int Nparticle=0; ifstream resofile("tables/pdg_particles.dat"); int local_i = 0; int dummy_int; while (!resofile.eof()) { resofile >> particle[local_i].monval; resofile >> particle[local_i].name; resofile >> particle[local_i].mass; resofile >> particle[local_i].width; resofile >> particle[local_i].gspin; //spin degeneracy resofile >> particle[local_i].baryon; resofile >> particle[local_i].strange; resofile >> particle[local_i].charm; resofile >> particle[local_i].bottom; resofile >> particle[local_i].gisospin; //isospin degeneracy resofile >> particle[local_i].charge; resofile >> particle[local_i].decays; for (int j = 0; j < particle[local_i].decays; j++) { resofile >> dummy_int; resofile >> particle[local_i].decays_Npart[j]; resofile >> particle[local_i].decays_branchratio[j]; resofile >> particle[local_i].decays_part[j][0]; resofile >> particle[local_i].decays_part[j][1]; resofile >> particle[local_i].decays_part[j][2]; resofile >> particle[local_i].decays_part[j][3]; resofile >> particle[local_i].decays_part[j][4]; } //decide whether particle is stable under strong interactions if(particle[local_i].decays_Npart[0] == 1) particle[local_i].stable = 1; else particle[local_i].stable = 0; //add anti-particle entry if(particle[local_i].baryon == 1) { local_i++; particle[local_i].monval = -particle[local_i-1].monval; ostringstream antiname; antiname << "Anti-" << particle[local_i-1].name; particle[local_i].name = antiname.str(); particle[local_i].mass = particle[local_i-1].mass; particle[local_i].width = particle[local_i-1].width; particle[local_i].gspin = particle[local_i-1].gspin; particle[local_i].baryon = -particle[local_i-1].baryon; particle[local_i].strange = -particle[local_i-1].strange; particle[local_i].charm = -particle[local_i-1].charm; particle[local_i].bottom = -particle[local_i-1].bottom; particle[local_i].gisospin = particle[local_i-1].gisospin; particle[local_i].charge = -particle[local_i-1].charge; particle[local_i].decays = particle[local_i-1].decays; particle[local_i].stable = particle[local_i-1].stable; for (int j = 0; j < particle[local_i].decays; j++) { particle[local_i].decays_Npart[j]=particle[local_i-1].decays_Npart[j]; particle[local_i].decays_branchratio[j]=particle[local_i-1].decays_branchratio[j]; for (int k=0; k< Maxdecaypart; k++) { if(particle[local_i-1].decays_part[j][k] == 0) particle[local_i].decays_part[j][k]= particle[local_i-1].decays_part[j][k]; else { int idx; for(idx = 0; idx < local_i; idx++) // find the index for decay particle if(particle[idx].monval == particle[local_i-1].decays_part[j][k]) break; if(idx == local_i && particle[local_i-1].stable == 0 && particle[local_i-1].decays_branchratio[j] > eps) // check { cout << "Error: can not find decay particle index for anti-baryon!" << endl; cout << "particle monval : " << particle[local_i-1].decays_part[j][k] << endl; exit(1); } if(particle[idx].baryon == 0 && particle[idx].charge == 0 && particle[idx].strange == 0) particle[local_i].decays_part[j][k]= particle[local_i-1].decays_part[j][k]; else particle[local_i].decays_part[j][k]= -particle[local_i-1].decays_part[j][k]; } } } } local_i++; // Add one to the counting variable "i" for the meson/baryon } resofile.close(); Nparticle=local_i-1; //take account the final fake one for(int i=0; i < Nparticle; i++) { if(particle[i].baryon==0) particle[i].sign=-1; else particle[i].sign=1; } return(Nparticle); } void read_FOdata::<API key>(int Nparticle, FO_surf* FOsurf_ptr, int FO_length, particle_info* particle, double** particle_mu) { int Nstable_particle; int Idummy; char cdummy[256]; cout << " -- Read particle table and calculating chemical potential for particles..." << endl; ifstream particletable; if(mode == 0) { particletable.open("EOS/EOS_particletable.dat"); } else if (mode == 1 || mode == 2) { if(IEOS_music == 3) particletable.open("EOS/EOS_tables/s95p-v1-PCE150/EOS_particletable.dat"); else if(IEOS_music == 4) particletable.open("EOS/EOS_tables/s95p-v1-PCE155/EOS_particletable.dat"); else if(IEOS_music == 5) particletable.open("EOS/EOS_tables/s95p-v1-PCE160/EOS_particletable.dat"); else if(IEOS_music == 6) particletable.open("EOS/EOS_tables/s95p-v1-PCE165/EOS_particletable.dat"); else { cout << "invalid EOS option for MUSIC: " << IEOS_music << endl; exit(-1); } } else { cout << "invalid hydro mode: " << mode << endl; exit(-1); } particletable >> Nstable_particle; double *<API key> = new double [Nstable_particle]; for(int i = 0; i < Nstable_particle; i++) { particletable >> Idummy >> <API key>[i]; particletable.getline(cdummy, 256); } particletable.close(); // assign chemical potentials for stable particles for(int i = 0; i < Nstable_particle; i++) for(int j=0; j<Nparticle; j++) if(particle[j].monval == <API key>[i]) { particle[j].stable = 1; for(int k=0; k<FO_length; k++) FOsurf_ptr[k].particle_mu[j] = particle_mu[i][k]; break; } delete[] <API key>; // calculating chemical potentials for unstable resonances print_progressbar(-1); for(int i=0; i < Nparticle ; i++) { if(particle[i].stable==0) { for(int j=0; j < particle[i].decays; j++) { for(int k=0; k < abs(particle[i].decays_Npart[j]); k++) { for(int l=0; l < Nparticle; l++) { if(particle[i].decays_part[j][k] == particle[l].monval) { for(int m=0; m<FO_length; m++) FOsurf_ptr[m].particle_mu[i] += particle[i].decays_branchratio[j]*FOsurf_ptr[m].particle_mu[l]; break; } if(l==Nparticle-1) cout<<"warning: can not find particle" << particle[i].name << endl; } } } } print_progressbar((double)(i)/Nparticle); } print_progressbar(1); return; }
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Pemeriksaan extends CI_Controller { function __construct(){ parent::__construct(); } public function index(){ if ($this->session->userdata('logged_in')) { $data['pasien'] = $this->Model_pemeriksaan->select_all_patient()->result(); $this->load->view('Admin/tabel_pasien',$data); } else { redirect(site_url('login')); } } public function input_status($nik){ if ($this->session->userdata('logged_in')) { $idkk = $this->Model_data_keluarga->getIdKK($nik); $data['family_data'] = $this->Model_data_keluarga->select_family_data($idkk)->result(); $data['pasien_data'] = $this->Model_data_keluarga->select_person($nik)->result(); $data['health_data'] = $this->Model_data_sosial->select_health_data($idkk)->result(); $data['status_pasien'] = $this->Model_pemeriksaan->select_status_data($nik)->result(); $data['namakk'] = $this->Model_data_keluarga->getNamaKK($idkk); $data['paraf'] = $this->session->userdata('username'); $data['status'] = "baru"; $this->load->view('Admin/status_pasien',$data); } else { redirect(site_url('login')); } } public function edit_status($nik, $id){ if ($this->session->userdata('logged_in')) { $idkk = $this->Model_data_keluarga->getIdKK($nik); $data['family_data'] = $this->Model_data_keluarga->select_family_data($idkk)->result(); $data['pasien_data'] = $this->Model_data_keluarga->select_person($nik)->result(); $data['health_data'] = $this->Model_data_keluarga->select_health_data($idkk)->result(); $data['status_pasien'] = $this->Model_pemeriksaan->select_status_data($nik)->result(); $data['edit_status'] = $this->Model_pemeriksaan->edit_status_data($id)->result(); $data['namakk'] = $this->Model_data_keluarga->getNamaKK($idkk); $data['paraf'] = $this->session->userdata('username'); $data['status'] = "baru"; $this->load->view('Admin/status_pasien',$data); } else { redirect(site_url('login')); } } public function <API key>(){ $nik = $this->input->post('nik'); $data['dk_nik'] = $nik; $data['tanggal'] = date("Y-m-d"); $data['anamnesa'] = $this->input->post('anamnesa'); $data['td'] = $this->input->post('td'); $data['rr'] = $this->input->post('rr'); $data['nadi'] = $this->input->post('nadi'); $data['suhu'] = $this->input->post('suhu'); $data['<API key>'] = $this->input->post('<API key>'); $data['diagnosa'] = $this->input->post('diagnosa'); $data['terapi'] = $this->input->post('terapi'); $data['paraf'] = $this->input->post('paraf'); $error = $this->Model_pemeriksaan->insert('status_pasien', $data); if($error == null){ $this->session->set_flashdata("sukses", "<div class='alert alert-success'><strong>Simpan data BERHASIL dilakukan</strong></div>"); header('location:'.base_url().'Pemeriksaan/input_status/'.$nik); }else{ $this->session->set_flashdata("alert", "<div class='alert alert-danger'><strong>Simpan data GAGAL di lakukan</strong></div>"); header('location:'.base_url().'Pemeriksaan/input_status/'.$nik); } } public function <API key>(){ $nik = $this->input->post('nik'); $id = $this->input->post('id_status_pasien'); $data['dk_nik'] = $nik; $data['tanggal'] = date("Y-m-d"); $data['anamnesa'] = $this->input->post('anamnesa'); $data['td'] = $this->input->post('td'); $data['rr'] = $this->input->post('rr'); $data['nadi'] = $this->input->post('nadi'); $data['suhu'] = $this->input->post('suhu'); $data['<API key>'] = $this->input->post('<API key>'); $data['diagnosa'] = $this->input->post('diagnosa'); $data['terapi'] = $this->input->post('terapi'); $data['paraf'] = $this->input->post('paraf'); $result = $this->Model_pemeriksaan->update('status_pasien', $data, $id, "id_status_pasien"); if($result != null){ $this->session->set_flashdata("sukses", "<div class='alert alert-success'><strong>Simpan data BERHASIL dilakukan</strong></div>"); header('location:'.base_url().'Pemeriksaan/input_status/'.$nik); }else{ $this->session->set_flashdata("alert", "<div class='alert alert-danger'><strong>Simpan data GAGAL di lakukan</strong></div>"); header('location:'.base_url().'Pemeriksaan/input_status/'.$nik); } } }
import { createValidator } from 'utils/validatorCompiler'; const constraints = { email: { presence: true, email: true, }, password: { presence: true, } }; export default createValidator(constraints);
game.PlayerBaseEntity = me.Entity.extend({ init: function(x, y, settings) { this._super(me.Entity, 'init', [x, y, { image: "tower", width: 100, height: 100, spritewidth: "100", spriteheight: "100", getShape: function() { return (new me.Rect(0, 0, 100, 70)).toPolygon(); } }]); this.broken = false; this.health = game.data.playerBaseHealth; this.alwaysUpdate = true; this.body.onCollision = this.onCollision.bind(this); this.type = "PlayerBase"; this.renderable.addAnimation("idle", [0]); this.renderable.addAnimation("broken", [1]); this.renderable.setCurrentAnimation("idle"); }, update: function(delta) { if (this.health <= 0) { this.broken = true; game.data.win = false; this.renderable.setCurrentAnimation("broken"); } this.body.update(delta); this._super(me.Entity, "update", [delta]); return true; }, loseHealth: function(damage) { this.health = this.health - damage; }, onCollision: function() { } });
using System; class NumbersFromOneToN { static void Main() { int number = int.Parse(Console.ReadLine()); for (int i = 1; i <= number; i++) { Console.Write("{0} ", i); } Console.WriteLine(); } }
// [bundle remove start] <reference path="<API key>.d.ts" /> // [bundle remove end] // Type definitions for Arcady AutoMapper.js ${libraryVersion} declare module <API key> { /** * AutoMapper implementation, for both creating maps and performing maps. Comparable usage and functionality to the original * .NET AutoMapper library is the pursuit of this implementation. */ class AutoMapper { /** * Initializes the mapper with the supplied configuration. * @param {(config: IConfiguration) => void} Configuration function to call. */ initialize(configFunction: (config: IConfiguration) => void): void; /** * Create a createMap curry function which expects only a destination key. * @param {string} sourceKey The map source key. * @returns {(destinationKey: string) => <API key>} */ createMap(sourceKey: string): (destinationKey: string) => <API key>; /** * Create a mapping profile. * @param {string} sourceKey The map source key. * @param {string} destinationKey The map destination key. * @returns {Core.<API key>} */ createMap(sourceKey: string, destinationKey: string): <API key>; /** * Create a map curry function which expects a destination key and a source object. * @param sourceKey Source key, for instance the source type name. * @returns {(destinationKey: string, sourceObject: any) => any} */ map(sourceKey: string): (destinationKey: string) => (sourceObject: any) => any; /** * Create a map curry function which expects only a source object. * @param sourceKey Source key, for instance the source type name. * @param destinationKey Destination key, for instance the destination type name. * @returns {(sourceObject: any) => any} */ map(sourceKey: string, destinationKey: string): (sourceObject: any) => any; /** * Execute a mapping from the source object to a new destination object with explicit mapping configuration and supplied mapping options (using createMap). * @param sourceKey Source key, for instance the source type name. * @param destinationKey Destination key, for instance the destination type name. * @param sourceObject The source object to map. * @returns {any} Destination object. */ map(sourceKey: string, destinationKey: string, sourceObject: any): any; } /** * Converts source type to destination type instead of normal member mapping */ class TypeConverter implements ITypeConverter { /** * Performs conversion from source to destination type. * @param {IResolutionContext} resolutionContext Resolution context. * @returns {any} Destination object. */ convert(resolutionContext: IResolutionContext): any; } export class Profile implements IProfile { /** Profile name */ public profileName: string; /** Naming convention for source members */ public <API key>: INamingConvention; /** Naming convention for destination members */ public <API key>: INamingConvention; /** * Create a createMap curry function which expects only a destination key. * @param {string} sourceKey The map source key. * @returns {(destinationKey: string) => <API key>} */ protected createMap(sourceKey: string): (destinationKey: string) => <API key>; /** * Create a mapping profile. * @param {string} sourceKey The map source key. * @param {string} destinationKey The map destination key. * @returns {Core.<API key>} */ protected createMap(sourceKey: string, destinationKey: string): <API key>; /** * Implement this method in a derived class and call the CreateMap method to associate that map with this profile. * Avoid calling the AutoMapper class / automapper instance from this method. */ public configure(): void; } /** * Defines the PascalCase naming convention strategy. */ class <API key> implements INamingConvention { /** Regular expression on how to tokenize a member. */ splittingExpression: RegExp; /** Character to separate on. */ separatorCharacter: string; /** * Transformation function called when this convention is the destination naming convention. * @param {string[]} <API key> Array containing tokenized source property name parts. * @returns {string} Destination property name */ <API key>(<API key>: string[]): string; } /** * Defines the camelCase naming convention strategy. */ class <API key> implements INamingConvention { /** Regular expression on how to tokenize a member. */ splittingExpression: RegExp; /** Character to separate on. */ separatorCharacter: string; /** * Transformation function called when this convention is the destination naming convention. * @param {string[]} <API key> Array containing tokenized source property name parts. * @returns {string} Destination property name */ <API key>(<API key>: string[]): string; } // [bundle remove start] } // [bundle remove end]
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class <API key> extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('estados', function($table) { $table->increments('id'); $table->string('estado'); $table->string('iso_3166-2'); }); Schema::create('municipios', function($table) { $table->increments('id'); $table->integer('estado_id')->unsigned(); $table->string('municipio'); $table->foreign('estado_id')->references('id')->on('estados'); }); Schema::create('ciudades', function($table) { $table->increments('id'); $table->integer('estado_id')->unsigned(); $table->string('ciudad'); $table->tinyInteger('capital'); $table->foreign('estado_id')->references('id')->on('estados'); }); Schema::create('parroquias', function($table) { $table->increments('id'); $table->integer('municipio_id')->unsigned(); $table->string('parroquia'); $table->foreign('municipio_id')->references('id')->on('municipios'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('estados'); Schema::drop('municipios'); Schema::drop('ciudades'); Schema::drop('parroquias'); } }
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Ion_auth { /** * account status ('not_activated', etc ...) * * @var string **/ protected $status; /** * extra where * * @var array **/ public $_extra_where = array(); /** * extra set * * @var array **/ public $_extra_set = array(); /** * caching of users and their groups * * @var array **/ public $<API key>; /** * __construct * * @author Ben */ public function __construct() { $this->load->config('ion_auth', TRUE); $this->load->library(array('email')); $this->load->helper(array('cookie', 'language','url')); $this->lang->load('ion_auth', 'indonesian'); $this->load->library('session'); $this->load->model('ion_auth_model'); $this-><API key> =& $this->ion_auth_model-><API key>; //auto-login the user if they are remembered if (!$this->logged_in() && get_cookie($this->config->item('<API key>', 'ion_auth')) && get_cookie($this->config->item('<API key>', 'ion_auth'))) { $this->ion_auth_model-><API key>(); } $email_config = $this->config->item('email_config', 'ion_auth'); if ($this->config->item('use_ci_email', 'ion_auth') && isset($email_config) && is_array($email_config)) { $this->email->initialize($email_config); } $this->ion_auth_model->trigger_events('library_constructor'); } /** * __call * * Acts as a simple way to call model methods without loads of stupid alias' * * @param $method * @param $arguments * @return mixed * @throws Exception */ public function __call($method, $arguments) { if (!method_exists( $this->ion_auth_model, $method) ) { throw new Exception('Undefined method Ion_auth::' . $method . '() called'); } if($method == 'create_user') { return <API key>(array($this, 'register'), $arguments); } if($method=='update_user') { return <API key>(array($this, 'update'), $arguments); } return <API key>( array($this->ion_auth_model, $method), $arguments); } /** * __get * * Enables the use of CI super-global without having to define an extra variable. * * I can't remember where I first saw this, so thank you if you are the original author. -Militis * * @access public * @param $var * @return mixed */ public function __get($var) { return get_instance()->$var; } /** * forgotten password feature * * @param $identity * @return mixed boolean / array * @author Mathew */ public function forgotten_password($identity) //changed $email to $identity { if ( $this->ion_auth_model->forgotten_password($identity) ) //changed { // Get user information $identifier = $this->ion_auth_model->identity_column; // use model identity column, so it can be overridden in a controller $user = $this->where($identifier, $identity)->where('active', 1)->users()->row(); // changed to <API key> from email if ($user) { $data = array( 'identity' => $user->{$this->config->item('identity', 'ion_auth')}, '<API key>' => $user-><API key> ); if(!$this->config->item('use_ci_email', 'ion_auth')) { $this->set_message('<API key>'); return $data; } else { $message = $this->load->view($this->config->item('email_templates', 'ion_auth').$this->config->item('<API key>', 'ion_auth'), $data, true); $this->email->clear(); $this->email->from($this->config->item('admin_email', 'ion_auth'), $this->config->item('site_title', 'ion_auth')); $this->email->to($user->email); $this->email->subject($this->config->item('site_title', 'ion_auth') . ' - ' . $this->lang->line('<API key>')); $this->email->message($message); if ($this->email->send()) { $this->set_message('<API key>'); return TRUE; } else { $this->set_error('<API key>'); return FALSE; } } } else { $this->set_error('<API key>'); return FALSE; } } else { $this->set_error('<API key>'); return FALSE; } } /** * <API key> * * @param $code * @author Mathew * @return bool */ public function <API key>($code) { $this->ion_auth_model->trigger_events('pre_password_change'); $identity = $this->config->item('identity', 'ion_auth'); $profile = $this->where('<API key>', $code)->users()->row(); //pass the code to profile if (!$profile) { $this->ion_auth_model->trigger_events(array('<API key>', '<API key>)); $this->set_error('<API key>); return FALSE; } $new_password = $this->ion_auth_model-><API key>($code, $profile->salt); if ($new_password) { $data = array( 'identity' => $profile->{$identity}, 'new_password' => $new_password ); if(!$this->config->item('use_ci_email', 'ion_auth')) { $this->set_message('<API key>); $this->ion_auth_model->trigger_events(array('<API key>', '<API key>)); return $data; } else { $message = $this->load->view($this->config->item('email_templates', 'ion_auth').$this->config->item('<API key>', 'ion_auth'), $data, true); $this->email->clear(); $this->email->from($this->config->item('admin_email', 'ion_auth'), $this->config->item('site_title', 'ion_auth')); $this->email->to($profile->email); $this->email->subject($this->config->item('site_title', 'ion_auth') . ' - ' . $this->lang->line('<API key>')); $this->email->message($message); if ($this->email->send()) { $this->set_message('<API key>); $this->ion_auth_model->trigger_events(array('<API key>', '<API key>)); return TRUE; } else { $this->set_error('<API key>); $this->ion_auth_model->trigger_events(array('<API key>', '<API key>)); return FALSE; } } } $this->ion_auth_model->trigger_events(array('<API key>', '<API key>)); return FALSE; } /** * <API key> * * @param $code * @author Michael * @return bool */ public function <API key>($code) { $profile = $this->where('<API key>', $code)->users()->row(); //pass the code to profile if (!is_object($profile)) { $this->set_error('<API key>); return FALSE; } else { if ($this->config->item('<API key>', 'ion_auth') > 0) { //Make sure it isn't expired $expiration = $this->config->item('<API key>', 'ion_auth'); if (time() - $profile-><API key> > $expiration) { //it has expired $this-><API key>($code); $this->set_error('<API key>); return FALSE; } } return $profile; } } /** * register * * @param $identity * @param $password * @param $email * @param array $additional_data * @param array $group_ids * @author Mathew * @return bool */ public function register($identity, $password, $email, $additional_data = array(), $group_ids = array()) //need to test email activation { $this->ion_auth_model->trigger_events('<API key>'); $email_activation = $this->config->item('email_activation', 'ion_auth'); $id = $this->ion_auth_model->register($identity, $password, $email, $additional_data, $group_ids); if (!$email_activation) { if ($id !== FALSE) { $this->set_message('<API key>'); $this->ion_auth_model->trigger_events(array('<API key>', '<API key>')); return $id; } else { $this->set_error('<API key>'); $this->ion_auth_model->trigger_events(array('<API key>', '<API key>')); return FALSE; } } else { if (!$id) { $this->set_error('<API key>'); return FALSE; } // deactivate so the user much follow the activation flow $deactivate = $this->ion_auth_model->deactivate($id); // the deactivate method call adds a message, here we need to clear that $this->ion_auth_model->clear_messages(); if (!$deactivate) { $this->set_error('<API key>'); $this->ion_auth_model->trigger_events(array('<API key>', '<API key>')); return FALSE; } $activation_code = $this->ion_auth_model->activation_code; $identity = $this->config->item('identity', 'ion_auth'); $user = $this->ion_auth_model->user($id)->row(); $data = array( 'identity' => $user->{$identity}, 'id' => $user->id, 'email' => $email, 'activation' => $activation_code, ); if(!$this->config->item('use_ci_email', 'ion_auth')) { $this->ion_auth_model->trigger_events(array('<API key>', '<API key>', '<API key>')); $this->set_message('<API key>'); return $data; } else { $message = $this->load->view($this->config->item('email_templates', 'ion_auth').$this->config->item('email_activate', 'ion_auth'), $data, true); $this->email->clear(); $this->email->from($this->config->item('admin_email', 'ion_auth'), $this->config->item('site_title', 'ion_auth')); $this->email->to($email); $this->email->subject($this->config->item('site_title', 'ion_auth') . ' - ' . $this->lang->line('<API key>')); $this->email->message($message); if ($this->email->send() == TRUE) { $this->ion_auth_model->trigger_events(array('<API key>', '<API key>', '<API key>')); $this->set_message('<API key>'); return $id; } } $this->ion_auth_model->trigger_events(array('<API key>', '<API key>', '<API key>')); $this->set_error('<API key>'); return FALSE; } } /** * logout * * @return void * @author Mathew **/ public function logout() { $this->ion_auth_model->trigger_events('logout'); $identity = $this->config->item('identity', 'ion_auth'); if (substr(CI_VERSION, 0, 1) == '2') { $this->session->unset_userdata( array($identity => '', 'id' => '', 'user_id' => '') ); } else { $this->session->unset_userdata( array($identity, 'id', 'user_id') ); } // delete the remember me cookies if they exist if (get_cookie($this->config->item('<API key>', 'ion_auth'))) { delete_cookie($this->config->item('<API key>', 'ion_auth')); } if (get_cookie($this->config->item('<API key>', 'ion_auth'))) { delete_cookie($this->config->item('<API key>', 'ion_auth')); } // Destroy the session $this->session->sess_destroy(); //Recreate the session if (substr(CI_VERSION, 0, 1) == '2') { $this->session->sess_create(); } else { if (version_compare(PHP_VERSION, '7.0.0') >= 0) { session_start(); } $this->session->sess_regenerate(TRUE); } $this->set_message('logout_successful'); return TRUE; } /** * logged_in * * @return bool * @author Mathew **/ public function logged_in() { $this->ion_auth_model->trigger_events('logged_in'); return (bool) $this->session->userdata('identity'); } /** * logged_in * * @return integer * @author jrmadsen67 **/ public function get_user_id() { $user_id = $this->session->userdata('user_id'); if (!empty($user_id)) { return $user_id; } return null; } /** * is_admin * * @return bool * @author Ben Edmunds **/ public function is_admin($id=false) { $this->ion_auth_model->trigger_events('is_admin'); $admin_group = $this->config->item('admin_group', 'ion_auth'); return $this->in_group($admin_group, $id); } /** * in_group * * @param mixed group(s) to check * @param bool user id * @param bool check if all groups is present, or any of the groups * * @return bool * @author Phil Sturgeon **/ public function in_group($check_group, $id=false, $check_all = false) { $this->ion_auth_model->trigger_events('in_group'); $id || $id = $this->session->userdata('user_id'); if (!is_array($check_group)) { $check_group = array($check_group); } if (isset($this-><API key>[$id])) { $groups_array = $this-><API key>[$id]; } else { $users_groups = $this->ion_auth_model->get_users_groups($id)->result(); $groups_array = array(); foreach ($users_groups as $group) { $groups_array[$group->id] = $group->name; } $this-><API key>[$id] = $groups_array; } foreach ($check_group as $key => $value) { $groups = (is_string($value)) ? $groups_array : array_keys($groups_array); /** * if !all (default), in_array * if all, !in_array */ if (in_array($value, $groups) xor $check_all) { /** * if !all (default), true * if all, false */ return !$check_all; } } /** * if !all (default), false * if all, true */ return $check_all; } }
# -*- coding: utf-8 -*- require File.expand_path('../../test_helper', __FILE__) module Peakium class SubmissionFormTest < Test::Unit::TestCase should "create should return a new submission form" do @mock.expects(:post).once.returns(test_response(<API key>)) sf = Peakium::SubmissionForm.build('create_subscription', {:customer => "test_customer"}) assert_equal "<form></form>", sf.html end end end
/** * Get the Microsoft Stream id. * @param {string} urlString - the url from which you want to extract the id * @returns {string|undefined} */ export default function microsoftStream(urlString) { const regex = (urlString.includes('embed')) ? /https:\/\/web\.microsoftstream\.com\/embed\/video\/([a-zA-Z\d-]*)\/?/ : /https:\/\/web\.microsoftstream\.com\/video\/([a-zA-Z\d-]*)\/?/; const matches = regex.exec(urlString); if (matches && matches.length > 1) { return matches[1]; } return undefined; }
#!/usr/bin/perl use strict; use warnings; package WWW::Shopify::Tooltips; use WWW::Shopify; use Exporter qw(import); my $tooltips = { 'WWW::Shopify::Model::FulfillmentService' => { '<API key>' => 'States if the fulfillment service tracks product inventory and provides updates to Shopify. Valid values are "true" and "false".', 'credential1' => 'Login information of the customer (usually in the form of an email address).', 'name' => 'The name of the fulfillment service as seen by merchants and their customers.', 'callback_url' => 'States the URL endpoint that Shopify needs to retrieve inventory and tracking updates. This field is necessary if either <API key> or tracking_support is set to "true".', 'provider_id' => 'A unique identifier for the fulfillment service provider.', '<API key>' => 'States if the fulfillment service requires products to be physically shipped. Valid values are "true" and "false".', 'tracking_support' => 'States if the fulfillment service provides tracking numbers for packages. Valid values are "true" and "false".', 'credential2_exists' => 'States whether or not there is a password for the login information of the customer. Valid values are "true" or "false".', 'format' => 'Specifies the format of the API output. Valid values are json and xml.', 'handle' => 'A human-friendly unique string for the fulfillment service generated from its title.' }, 'WWW::Shopify::Model::Shop' => { 'source' => '', 'google_apps_domain' => 'Feature is present when a shop has a google app domain. It will be returned as a URL. If the shop does not have this feature enabled it will default to "null."', 'country_code' => 'The two-letter country code corresponding to the shop\'s country.', 'taxes_included' => 'The setting for whether applicable taxes are included in product prices. Valid values are: "true" or "null."', 'money_format' => 'A string representing the way currency is formatted when the currency isn\'t specified.', 'tax_shipping' => 'Specifies wether or not taxes were charged for shipping. Valid values are: "true" or "false."', 'email' => 'The contact email address for the shop.', 'currency' => 'The three-letter code for the currency that the shop accepts.', 'domain' => 'The shop\'s domain.', 'city' => 'The city in which the shop is located.', 'created_at' => 'The date and time when the shop was created. The API returns this value in ISO 8601 format.', 'latitude' => 'Geographic coordinate specifying the north/south location of a shop.', 'public' => '', 'myshopify_domain' => 'The shop\'s \'myshopify.com\' domain.', '<API key>' => 'Feature is present if a shop has google apps enabled. Those shops with this feature will be able to login to the google apps login. Shops without this feature enabled will default to "null."', 'shop_owner' => 'The username of the shop owner.', 'province_code' => 'The two-letter code for the shop\'s province or state.', 'province' => 'The shop\'s normalized province or state name.', 'id' => 'A unique numeric identifier for the shop.', 'country' => 'The shop\'s country (by default equal to the two-letter country code).', 'country_name' => 'The shop\'s normalized country name.', 'longitude' => 'Geographic coordinate specifying the east/west location of a shop.', 'timezone' => 'The name of the timezone the shop is in.', 'customer_email' => 'The customer\'s email.', 'name' => 'The name of the shop.', 'display_plan_name' => 'The display name of the Shopify plan the shop is on.', 'phone' => 'The contact phone number for the shop.', '<API key>' => 'A string representing the way currency is formatted when the currency is specified.', 'zip' => 'The zip or postal code of the shop\'s address.', 'plan_name' => 'The name of the Shopify plan the shop is on.', 'address1' => 'The shop\'s street address.' }, 'WWW::Shopify::Model::Event' => { 'subject_type' => 'The type of the resource that generated the event. This will be one of the following:<ul>', 'message' => 'Human readable text that describes the event.', 'body' => 'A text field containing information about the event.', 'created_at' => 'The date and time when the event was created. The API returns this value in ISO 8601 format.', 'subject_id' => 'The id of the resource that generated the event.', 'verb' => 'The type of event that took place. Different resources generate different types of event; see Resources and their event verbs and messages (below) for details.', 'arguments' => 'Refers to a certain event and its resources.', 'id' => 'The unique numeric identifier for the event.' }, 'WWW::Shopify::Model::ProductSearchEngine' => {}, 'WWW::Shopify::Model::Order::LineItem' => { 'sku' => 'A unique identifier of the item in the fulfillment.', 'fulfillment_service' => 'Service provider who is doing the fulfillment. Valid values are either "manual" or the name of the provider. eg: "amazon", "shipwire", etc.', 'gift_card' => 'States wether or not the line_item is a gift card. If so, the item is not taxed or considered for shipping charges.', 'product_id' => 'The unique numeric identifier for the product in the fulfillment. Can be null if the original product associated with the order is deleted at a later date', 'id' => 'The id of the line item.', 'grams' => 'The weight of the item in grams.', 'tax_lines' => 'A list of <code>tax_line</code> objects, each of which details the taxes applicable to this line_item.', 'quantity' => 'The number of products that were purchased.', 'name' => 'The name of the product variant.', 'taxable' => 'States whether or not the product was taxable. Values are: true or false.', 'variant_title' => 'The title of the product variant.', 'fulfillment_status' => 'How far along an order is in terms line items fulfilled. Valid values are: fulfilled, null or partial.', 'variant_id' => 'The id of the product variant.', 'price' => 'The price of the item.', 'title' => 'The title of the product.', 'requires_shipping' => 'States whether or not the fulfillment requires shipping. Values are: true or false.', 'vendor' => 'The name of the supplier of the item.' }, 'WWW::Shopify::Model::Refund' => { 'created_at' => 'The date and time when the refund was created. The API returns this value in ISO 8601 format.', 'refund_line_items' => '', 'transactions' => 'The list of transactions involved in the refund.', 'restock' => 'Whether or not the line items were added back to the store inventory.', 'user_id' => 'The unique identifier of the user who performed the refund.', 'id' => 'The unique numeric identifier for the refund. This one is used for API purposes.', 'note' => 'The optional note attached to a refund.' }, 'WWW::Shopify::Model::Page' => { 'published_at' => 'This can have two different types of values, depending on whether the page has been published (i.e., made visible to the blog\'s readers).<ul>', 'shop_id' => 'The id of the shop to which the page belongs.', 'metafields' => '', 'author' => 'The name of the person who created the page.', 'template_suffix' => 'The suffix of the liquid template being used. By default, the original template is called page.liquid, without any suffix. Any additional templates will be: page.suffix.liquid.', 'created_at' => 'The date and time when the page was created. The API returns this value in ISO 8601 format.', 'handle' => 'A human-friendly unique string for the page automatically generated from its title. This is used in shop themes by the Liquid templating language to refer to the page.', 'updated_at' => 'The date and time when the page was last updated. The API returns this value in ISO 8601 format.', 'title' => 'The title of the page.', 'body_html' => 'Text content of the page, complete with HTML markup.', 'id' => 'The unique numeric identifier for the page.' }, 'WWW::Shopify::Model::Checkout::ShippingLine' => { 'title' => '', 'price' => 'The price of this shipping method.' }, 'WWW::Shopify::Model::SmartCollection' => { 'published_at' => 'This can have two different types of values, depending on whether the smart collection has been published (i.e., made visible to customers):<ul>', 'sort_order' => 'The order in which products in the smart collection appear. Valid values are:<ul>', 'rules' => '', 'published_scope' => 'The sales channels in which the smart collection is visible.', 'image' => 'The collection image.', 'template_suffix' => 'The suffix of the template you are using. By default, the original template is called product.liquid, without any suffix. Any additional templates will be: product.suffix.liquid.', 'handle' => 'A human-friendly unique string for the smart collection automatically generated from its title. This is used in shop themes by the Liquid templating language to refer to the smart collection.', 'updated_at' => 'The date and time when the smart collection was last modified. The API returns this value in ISO 8601 format.', 'title' => 'The name of the smart collection.', 'body_html' => 'The best selling ipod ever', 'id' => 'The unique numeric identifier for the smart collection.' }, 'WWW::Shopify::Model::CustomerGroup' => { 'created_at' => 'The date and time when the customer group was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the customer group was last modified. The API returns this value in ISO 8601 format.', 'query' => 'The set of conditions that determines which customers will go into the customer group. Queries are covered in more detail in Customer group queries.', 'name' => 'The name given by the shop owner to the customer group.', 'id' => 'A unique numeric identifier for the customer group.' }, 'WWW::Shopify::Model::Order::ShippingLine' => { 'source' => 'The source of the shipping method.', 'tax_lines' => 'A list of <code>tax_line</code> objects, each of which details the taxes applicable to this shipping_line.', 'title' => 'The title of the shipping method.', 'price' => 'The price of this shipping method.', 'code' => 'A reference to the shipping method.' }, 'WWW::Shopify::Model::Item' => {}, 'WWW::Shopify::Model::Transaction' => { 'test' => 'The option to use the transaction for testing purposes. Valid values are "true" or "false."', 'status' => 'The status of the transaction. Valid values are: pending, failure, success or error.', 'gateway' => 'The name of the gateway the transaction was issued through. A list of gateways can be found on Shopify\'s Payment Gateway page.', 'order_id' => 'A unique numeric identifier for the order.', 'authorization' => 'The authorization code associated with the transaction.', 'device_id' => 'The unique identifier for the device.', 'amount' => 'The amount of money that the transaction was for.', 'created_at' => 'The date and time when the transaction was created. The API returns this value in ISO 8601 format.', 'kind' => 'The kind of transaction:', 'user_id' => 'The unique identifier for the user.', 'id' => 'A unique numeric identifier for the transaction.', 'receipt' => '' }, 'WWW::Shopify::Model::Order::PaymentDetails' => { 'credit_card_company' => 'The name of the company who issued the customer\'s credit card.', 'credit_card_bin' => 'The issuer identification number (IIN), formerly known as bank identification number (BIN) ] of the customer\'s credit card. This is made up of the first few digits of the credit card number.', 'cvv_result_code' => 'The Response code from the credit card company indicating whether the customer entered the card security code, a.k.a. card verification value, correctly. The code is a single letter or empty string; see this chart for the codes and their definitions.', 'credit_card_number' => 'The customer\'s credit card number, with most of the leading digits redacted with Xs.' }, 'WWW::Shopify::Model::Order::ClientDetails' => { 'browser_ip' => 'The browser IP address.', 'session_hash' => 'A hash of the session.', 'user_agent' => '', 'accept_language' => '' }, 'WWW::Shopify::Model::Transaction::Receipt' => { 'authorization' => '', 'testcase' => '' }, 'WWW::Shopify::Model::Order::Fulfillment::LineItem' => { 'sku' => 'A unique identifier of the item in the fulfillment.', 'product_exists' => 'States whether or not the product exists. Valid values are "true" or "false".', 'fulfillment_service' => 'Service provider who is doing the fulfillment. Valid values are: manual, ', 'product_id' => 'The unique numeric identifier for the product in the fulfillment.', 'id' => 'The id of the <code>line_item</code> within the fulfillment.', 'grams' => 'The weight of the item in grams.', 'quantity' => 'The number of items in the fulfillment.', 'name' => 'The name of the product variant.', 'properties' => 'Returns additional properties associated with the line item.', 'variant_title' => 'The title of the product variant being fulfilled.', 'fulfillment_status' => 'Status of an order in terms of the <code>line_items</code> being fulfilled. Valid values are: fulfilled, null or partial.', 'variant_id' => 'The id of the product variant being fulfilled.', 'price' => 'The price of the item.', 'title' => 'The title of the product.', '<API key>' => 'Returns the name of the inventory management system.', 'requires_shipping' => 'Specifies whether or not a customer needs to provide a shipping address when placing an order for this product variant. Valid values are: "true" or "false."', 'vendor' => 'The name of the supplier of the item.' }, 'WWW::Shopify::Model::Article' => { 'summary_html' => 'The text of the summary of the article, complete with HTML markup.', 'published_at' => 'The date and time when the article was published. The API returns this value in ISO 8601 format.', 'metafields' => '', 'author' => 'The name of the author of this article', 'tags' => 'Tags are additional short descriptors formatted as a string of comma-separated values. For example, if an article has three tags: tag1, tag2, tag3.', 'published' => 'States whether or not the article is visible. Valid values are "true" for published or "false" for hidden.', 'created_at' => 'The date and time when the article was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the article was last updated. The API returns this value in ISO 8601 format.', 'user_id' => 'A unique numeric identifier for the author of the article.', 'title' => 'The title of the article.', 'blog_id' => 'A unique numeric identifier for the blog containing the article.', 'body_html' => 'The text of the body of the article, complete with HTML markup.', 'id' => 'A unique numeric identifier for the article.' }, 'WWW::Shopify::Model::Checkout' => { 'total_price' => 'The sum of all the prices of all the items in the order, taxes and discounts included.', 'line_items' => '', 'billing_address' => '', 'discount_codes' => '', 'shipping_lines' => '', 'taxes_included' => '', '<API key>' => 'Indicates whether or not the person who placed the order would like to receive email updates from the shop. This is set when checking the "I want to receive occasional emails about new products, promotions and other news" checkbox during checkout. Valid values are "true" and "false."', '<API key>' => 'The full recovery URL to be sent to a customer to recover their abandoned checkout.', 'email' => 'The customer\'s email address.', 'created_at' => 'The date and time when the order was created. The API returns this value in ISO 8601 format.', 'id' => 'The unique numeric identifier for the order. This one is used for API purposes. This is different from the order_number property (see below), which is also a unique numeric identifier for the order, but used by the shop owner and customer.', 'token' => 'Unique identifier for a particular order.', 'total_discounts' => 'The total amount of the discounts to be applied to the price of the order.', 'landing_site' => 'The URL for the page where the buyer landed when entering the shop.', 'total_weight' => 'The sum of all the weights of the line items in the order, in grams.', 'tax_lines' => '', 'cart_token' => 'Unique identifier for a particular cart that is attached to a particular order.', 'referring_site' => 'The website that the customer clicked on to come to the shop.', 'note' => 'The text of an optional note that a shopowner can attach to the order.', 'source_name' => 'Where the checkout originated from. Returned value will be "web" or "pos"', '<API key>' => 'The sum of all the prices of all the items in the order.', 'updated_at' => 'The date and time when the order was last modified. The API returns this value in ISO 8601 format.', 'customer' => '', 'shipping_address' => '', 'subtotal_price' => 'Price of the order before shipping and taxes', 'total_tax' => 'The sum of all the taxes applied to the line items in the order.' }, 'WWW::Shopify::Model::Comment' => { 'published_at' => 'The date and time when the comment was published. In the case of comments, this is the date and time when the comment was created, meaning that it has the same value as created_at. The API returns this value in ISO 8601 format.', 'article_id' => 'A unique numeric identifier for the article to which the comment belongs.', 'user_agent' => 'The user agent string provided by the software (usually a browser) used to create the comment.', 'status' => 'The status of the comment. The possible values are:<ul>', 'ip' => 'The IP address from which the comment was posted.', 'body' => 'The basic textile markup of a comment.', 'email' => 'The email address of the author of the comment.', 'created_at' => 'The date and time when the comment was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the comment was last modified. When the comment is first created, this is the date and time when the comment was created, meaning that it has the same value as created_at. If the blog requires comments to be approved, this value is updated to the date and time the comment was approved upon approval. The API returns this value in ISO 8601 format.', 'blog_id' => 'A unique numeric identifier for the blog containing the article that the comment belongs to.', 'body_html' => 'The text of the comment, complete with HTML markup.', 'id' => 'A unique numeric identifier for the comment.' }, 'WWW::Shopify::Model::Blog' => { 'feedburner_location' => 'URL to the feedburner location for blogs that have enabled feedburner through their store admin.', 'metafields' => '', 'feedburner' => 'Feedburner is a web feed management provider and can be enabled to provide custom RSS feeds for Shopify bloggers. This property will default to blank or "null" unless feedburner is enabled through the shop admin.', 'tags' => 'Tags are additional short descriptors formatted as a string of comma-separated values. For example, if an article has three tags: tag1, tag2, tag3.', 'template_suffix' => 'States the name of the template a blog is using if it is using an alternate template. If a blog is using the default blog.liquid template, the value returned is "null".', 'created_at' => 'The date and time when the blog was created. The API returns this value in ISO 8601 format.', 'handle' => 'A human-friendly unique string for a blog automatically generated from its title. This handle is used by the Liquid templating language to refer to the blog.', 'updated_at' => 'The date and time when changes were last made to the blog\'s properties. Note that this is not updated when creating, modifying or deleting articles in the blog. The API returns this value in ISO 8601 format.', 'title' => 'The title of the blog.', 'id' => 'A unique numeric identifier for the blog.', 'commentable' => 'Indicates whether readers can post comments to the blog and if comments are moderated or not. Possible values are:<ul>' }, 'WWW::Shopify::Model::Customer' => { 'last_order_name' => 'The name of the customer\'s last order. This is directly related to the Order\'s name field.', 'orders_count' => 'The number of orders associated with this customer.', 'state' => 'The state of the customer in a shop. Customers start out as "disabled." They are invited by email to setup an account with a shop. The customer can then:', 'last_name' => 'The customer\'s last name.', 'email' => 'The email address of the customer.', 'created_at' => 'The date and time when the customer was created. The API returns this value in ISO 8601 format.', '<API key>' => 'The customer\'s identifier used with Multipass login', 'verified_email' => 'States whether or not the email address has been verified.', 'id' => 'A unique numeric identifier for the customer.', 'last_order_id' => 'The id of the customer\'s last order.', 'metafields' => '', 'accepts_marketing' => 'Indicates whether the customer has consented to be sent marketing material via email. Valid values are "true" and "false."', 'note' => 'A note about the customer.', 'tags' => 'Tags are additional short descriptors formatted as a string of comma-separated values. For example, if an article has three tags: tag1, tag2, tag3.', 'addresses' => '', 'updated_at' => 'The date and time when the customer information was updated. The API returns this value in ISO 8601 format.', 'default_address' => '', 'total_spent' => 'The total amount of money that the customer has spent at the shop.', 'first_name' => 'The customer\'s first name.' }, 'WWW::Shopify::Model::CarrierService' => { 'name' => 'The name of the shipping service as seen by merchants and their customers.', 'callback_url' => 'States the URL endpoint that shopify needs to retrieve shipping rates. This must be a public URL.', 'active' => 'States whether or not this carrier service is active. Valid values are "true" and "false".', 'service_discovery' => 'States if merchants are able to send dummy data to your service through the Shopify admin to see shipping rate examples. Valid values are "true" and "false"', '<API key>' => 'Distinguishes between api or legacy carrier services.' }, 'WWW::Shopify::Model::ApplicationCharge' => { 'test' => 'States whether or not the application charge is a test transaction. Valid values are "true" or "null".', 'status' => 'The status of the application charge. Valid values are:<ul>', 'name' => 'The name of the one-time application charge.', 'return_url' => 'The URL the customer is sent to once they accept/decline a charge.', 'confirmation_url' => 'The URL that the customer is taken to, to accept or decline the one-time application charge.', 'created_at' => 'The date and time when the one-time application charge was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the charge was last updated. The API returns this value in ISO 8601 format.', 'id' => 'A unique numeric identifier for the one-time application charge.', 'price' => 'The price of the the one-time application charge.' }, 'WWW::Shopify::Model::Order::Fulfillment' => { 'line_items' => '', 'status' => 'The status of the fulfillment. Valid values are:<ul>', 'order_id' => 'The unique numeric identifier for the order.', 'created_at' => 'The date and time when the fulfillment was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the fulfillment was last modified. The API returns this value in ISO 8601 format.', 'id' => 'A unique numeric identifier for the fulfillment.', 'tracking_company' => 'The name of the shipping company.', 'receipt' => '' }, 'WWW::Shopify::Model::Order' => { 'total_price' => 'The sum of all the prices of all the items in the order, taxes and discounts included (must be positive).', 'line_items' => '', 'closed_at' => 'The date and time when the order was closed. If the order was closed, the API returns this value in ISO 8601 format. If the order was not closed, this value is null.', 'billing_address' => '', 'taxes_included' => 'States whether or not taxes are included in the order subtotal. Valid values are "true" or "false".', 'email' => 'The customer\'s email address. Is required when a billing address is present.', 'id' => 'The unique numeric identifier for the order. This one is used for API purposes. This is different from the order_number property (see below), which is also a unique numeric identifier for the order, but used by the shop owner and customer.', 'payment_details' => '', 'total_discounts' => 'The total amount of the discounts to be applied to the price of the order.', 'order_number' => 'A unique numeric identifier for the order. This one is used by the shop owner and customer. This is different from the id property, which is also a unique numeric identifier for the order, but used for API purposes.', 'financial_status' => '<ul>', 'landing_site' => 'The URL for the page where the buyer landed when entering the shop.', 'name' => 'The customer\'s order name as represented by a number.', 'cart_token' => 'Unique identifier for a particular cart that is attached to a particular order.', '<API key>' => 'The sum of all the prices of all the items in the order.', 'note_attributes' => 'Extra information that is added to the order. Each array entry must contain a hash with "name" and "value" keys as shown above.', 'updated_at' => 'The date and time when the order was last modified. The API returns this value in ISO 8601 format.', 'shipping_address' => '', 'fulfillment_status' => '<ul>', 'subtotal_price' => 'Price of the order before shipping and taxes', 'total_tax' => 'The sum of all the taxes applied to the order (must be positive).', 'number' => 'Numerical identifier unique to the shop. A number is sequential and starts at 1000.', 'discount_codes' => '', 'gateway' => '<strong>Deprecated as of July 14, 2014. This information is instead available on <a href=\'=/api/transaction#properties\'>transactions</strong>', 'shipping_lines' => '', '<API key>' => 'Indicates whether or not the person who placed the order would like to receive email updates from the shop. This is set when checking the "I want to receive occasional emails about new products, promotions and other news" checkbox during checkout. Valid values are "true" and "false."', 'cancel_reason' => 'The reason why the order was cancelled. If the order was not cancelled, this value is "null." If the order was cancelled, the value will be one of the following:', 'currency' => 'The three letter code (ISO 4217) for the currency used for the payment.', 'created_at' => 'The date and time when the order was created. The API returns this value in ISO 8601 format.', 'token' => 'Unique identifier for a particular order.', 'total_weight' => 'The sum of all the weights of the line items in the order, in grams.', 'tax_lines' => '', 'client_details' => '', 'cancelled_at' => 'The date and time when the order was cancelled. If the order was cancelled, the API returns this value in ISO 8601 format. If the order was not cancelled, this value is "null."', 'processing_method' => 'States the type of payment processing method. Valid values are: checkout, direct, manual, offsite or express.', 'referring_site' => 'The website that the customer clicked on to come to the shop.', 'tags' => 'Tags are additional short descriptors formatted as a string of comma-separated values. For example, if an order has three tags: tag1, tag2, tag3.', 'note' => 'The text of an optional note that a shop owner can attach to the order.', 'browser_ip' => 'The IP address of the browser used by the customer when placing the order.', 'source_name' => 'Where the order originated from. Returned value will be "web" or "pos"', 'customer' => '', 'fulfillments' => '' }, 'WWW::Shopify::Model::CustomCollection::Collect' => { 'position' => 'A number specifying the order in which the product appears in the custom collection, with 1 denoting the first item in the collection. This value applies only when the custom collection\'s sort-order property is set to manual.', 'sort_value' => 'This is the same value as <tt>position</tt> but padded with leading zeroes to make it <API key>.', 'created_at' => 'The date and time when the collect was created. The API returns this value in ISO 8601 format.', 'featured' => 'States whether or not the collect is featured. Valid values are "true" or "false".', 'product_id' => 'The unique numeric identifier for the product in the custom collection.', 'updated_at' => 'The date and time when the collect was last updated. The API returns this value in ISO 8601 format.', 'collection_id' => 'The id of the custom collection containing the product.', 'id' => 'A unique numeric identifier for the collect.' }, 'WWW::Shopify::Model::<API key>' => { 'trial_days' => 'Number of days that the customer is eligible for a free trial.', 'test' => 'States whether or not the application charge is a test transaction. Valid values are "true" or "null".', 'name' => 'The name of the recurring application charge.', 'cancelled_on' => 'The date and time when the customer cancelled their recurring application charge. The API returns this value in ISO 8601 format.<br/>Note: If the recurring application charge is not cancelled it will default to "null".', 'trial_ends_on' => 'The date and time when the free trial ends. The API returns this value in ISO 8601 format.', 'return_url' => 'The URL the customer is sent to once they accept/decline a charge.', 'confirmation_url' => 'The URL that the customer is taken to, to accept or decline the recurring application charge.', 'created_at' => 'The date and time when the recurring application charge was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the recurring application charge was last updated. The API returns this value in ISO 8601 format.', 'activated_on' => 'The date and time when the customer activated the recurring application charge. The API returns this value in ISO 8601 format.<br/>Note: The recurring application charge must be activated or the returning value will be "null".', 'id' => 'A unique numeric identifier for the recurring application charge.', 'price' => 'The price of the the recurring application charge.', 'billing_on' => 'The date and time when the customer will be billed. The API returns this value in ISO 8601 format.<br/>Note: The recurring application charge must be accepted or the returning value will be "null".' }, 'WWW::Shopify::Model::Location' => { 'country' => 'The country the location is in', 'location_type' => 'The location type', 'name' => 'The name of the location', 'phone' => 'The phone number of the location, can contain special chars like - and +', 'address2' => 'The second line of the address', 'created_at' => 'The date and time when the location was created. The API returns this value in ISO 8601 format.', 'zip' => 'The zip or postal code', 'city' => 'The city the location is in', 'updated_at' => 'The date and time when the location was last updated. The API returns this value in ISO 8601 format.', 'id' => 'A unique numeric identifier for the location.', 'address1' => 'The first line of the address', 'province' => 'The province the location is in' }, 'WWW::Shopify::Model::SmartCollection::Rule' => { 'relation' => ' The relation between the identifier for the condition and the numeric amount.', 'column' => '', 'condition' => ' Select products for a collection using a condition.' }, 'WWW::Shopify::Model::Order::Risk' => {}, 'WWW::Shopify::Model::Checkout::LineItem' => { 'sku' => 'A unique identifier of the item in the fulfillment.', 'grams' => 'The weight of the item in grams.', 'fulfillment_service' => 'Service provider who is doing the fulfillment. Valid values are: manual, ', 'quantity' => 'The number of products that were purchased.', 'variant_title' => 'The title of the product variant.', 'product_id' => 'The unique numeric identifier for the product in the fulfillment.', 'variant_id' => 'The id of the product variant.', 'price' => 'The price of the item.', 'title' => 'The title of the product.', 'vendor' => 'The name of the supplier of the item.', 'requires_shipping' => 'States whether or not the fulfillment requires shipping. Values are: true or false.' }, 'WWW::Shopify::Model::Country::Province' => { 'tax_percentage' => 'The tax value in percent format.', 'tax_type' => 'A tax_type is applied for a compounded sales tax. For example, the Canadian HST is a compounded sales tax of both PST and GST.', 'name' => 'The name of the province or state.', 'tax_name' => 'The name of the tax as it is referred to in the applicable province/state. For example, in Ontario, Canada the tax is referred to as HST.', 'tax' => 'The tax value in decimal format.', 'id' => 'The unique numeric identifier for the particular province or state.', 'code' => 'The two letter province or state code.' }, 'WWW::Shopify::Model::Checkout::TaxLine' => { 'rate' => 'The rate of tax to be applied.', 'title' => 'The name of the tax.', 'price' => 'The amount of tax to be charged.' }, 'WWW::Shopify::Model::Address' => { 'country_code' => 'The two-letter country code corresponding to the customer\'s country.', 'last_name' => 'The customer\'s last name.', 'city' => 'The customer\'s city.', 'latitude' => 'The latitude of the billing address.', 'id' => 'A unique numeric identifier for the address.', 'province_code' => 'The two-letter pcode for the customer\'s province or state.', 'province' => 'The customer\'s province or state name.', 'company' => 'The customer\'s company.', 'country' => 'The customer\'s country.', 'longitude' => 'The longitude of the billing address.', 'name' => 'The customer\'s name.', 'phone' => 'The customer\'s phone number.', 'address2' => 'An additional field for the customer\'s mailing address.', 'zip' => 'The customer\'s zip or postal code.', 'address1' => 'The customer\'s mailing address.', 'first_name' => 'The customer\'s first name.' }, 'WWW::Shopify::Model::Asset' => { 'attachment' => 'An asset attached to a store\'s theme.', 'value' => 'The asset that you are adding.', 'src' => 'Specifies the location of an asset.', 'source_key' => 'The source key copies an asset.', 'public_url' => 'The public facing URL of the asset.', 'size' => 'The asset size in bytes.', 'key' => 'The path to the asset within a shop. For example, the asset bg-body-green.gif is located in the assets folder.', 'content_type' => 'MIME representation of the content, consisting of the type and subtype of the asset.', 'created_at' => 'The date and time when the asset was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when an asset was last updated. The API returns this value in ISO 8601 format.' }, 'WWW::Shopify::Model::Order::TaxLine' => { 'rate' => 'The rate of tax to be applied.', 'title' => 'The name of the tax.', 'price' => 'The amount of tax to be charged.' }, 'WWW::Shopify::Model::CustomCollection' => { 'published_at' => 'This can have two different types of values, depending on whether the custom collection has been published (i.e., made visible to customers):<ul>', 'sort_order' => 'The order in which products in the custom collection appear. Valid values are:<ul>', 'metafields' => '', 'published_scope' => 'The sales channels in which the custom collection is visible.', 'image' => '', 'template_suffix' => 'The suffix of the liquid template being used. By default, the original template is called product.liquid, without any suffix. Any additional templates will be: product.suffix.liquid.', 'published' => 'States whether the custom collection is visible. Valid values are "true" for visible and "false" for hidden.', 'handle' => 'A human-friendly unique string for the custom collection automatically generated from its title. This is used in shop themes by the Liquid templating language to refer to the custom collection.', 'updated_at' => 'The date and time when the custom collection was last modified. The API returns this value in ISO 8601 format.', 'title' => 'The name of the custom collection.', 'body_html' => 'The description of the custom collection, complete with HTML markup. Many templates display this on their custom collection pages.', 'id' => 'The unique numeric identifier for the custom collection.' }, 'WWW::Shopify::Model::Cart' => {}, 'WWW::Shopify::Model::Metafield' => { 'namespace' => 'Container for a set of metadata. Namespaces help distinguish between metadata you created against metadata created by another individual with a similar namespace (maximum of 20 characters).', 'value' => 'Information to be stored as metadata.', 'description' => 'Additional information about the metafield. This property is optional.', 'key' => 'Identifier for the metafield (maximum of 30 characters).', 'value_type' => 'States whether the information in the value is stored as a \'string\' or \'integer.\'', 'created_at' => 'The date and time when the metafield was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the metafield was published. The API returns this value in ISO 8601 format.', 'id' => 'Unique numeric identifier for the metafield.', 'owner_id' => 'A unique numeric identifier for the metafield\'s owner.', 'owner_resource' => 'Unique id for that particular resource.' }, 'WWW::Shopify::Model::Refund::LineItem' => { 'quantity' => 'The quantity of the associated line item that was returned.', 'line_item' => 'The single line item being returned.', 'id' => 'The unique identifier of the refund line item.', 'line_item_id' => 'The id of the related line item.' }, 'WWW::Shopify::Model::Theme' => { 'created_at' => 'The date and time when the theme was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the theme was last updated. The API returns this value in ISO 8601 format.', 'name' => 'The name of the theme.', 'id' => 'A unique numeric identifier for the theme.', 'role' => 'Specifies how the theme is being used within the shop. Valid values are:' }, 'WWW::Shopify::Model::Country' => { 'name' => 'The full name of the country, in English.', 'tax' => 'The national sales tax rate to be applied to orders made by customers from that country.', 'id' => 'The unique numeric identifier for the country. <br /> It is important to note that the id for a given country in one shop will not be the same as the id for the same country in another shop.', 'provinces' => '', 'code' => 'The ISO 3166-1 alpha-2 two-letter country code for the country. The code for a given country will be the same as the code for the same country in another shop.' }, 'WWW::Shopify::Model::Product' => { 'published_at' => 'The date and time when the product was published. The API returns this value in ISO 8601 format.', 'images' => 'A list of image objects, each one representing an image associated with the product.', 'options' => 'Custom product property names like "Size", "Color", and "Material". products are based on permutations of these options. A product may have a maximum of 3 options.', 'tags' => 'A categorization that a product can be tagged with, commonly used for filtering and searching.', 'published_scope' => 'The sales channels in which the product is visible.', 'variants' => 'A list of variant objects, each one representing a slightly different version of the product. For example, if a product comes in different sizes and colors, each size and color permutation (such as "small black", "medium black", "large blue"), would be a variant.', 'template_suffix' => 'The suffix of the liquid template being used. By default, the original template is called product.liquid, without any suffix. Any additional templates will be: product.suffix.liquid.', 'product_type' => 'A categorization that a product can be tagged with, commonly used for filtering and searching.', 'created_at' => 'The date and time when the product was created. The API returns this value in ISO 8601 format.', 'handle' => 'A human-friendly unique string for the Product automatically generated from its title. They are used by the Liquid templating language to refer to objects.', 'updated_at' => 'The date and time when the product was last modified. The API returns this value in ISO 8601 format.', 'title' => 'The name of the product. In a shop\'s catalog, clicking on a product\'s title takes you to that product\'s page. On a product\'s page, the product\'s title typically appears in a large font.', 'body_html' => 'The description of the product, complete with HTML formatting.', 'id' => 'The unique numeric identifier for the product. Product ids are unique across the entire Shopify system; no two products will have the same id, even if they\'re from different shops.', 'vendor' => 'The name of the vendor of the product.' }, 'WWW::Shopify::Model::Redirect' => { 'target' => 'The "after" path or URL to be redirected to. When the user visits the path specified by path, s/he will be redirected to this path or URL. This property can be set to any path on the shop\'s site, or any URL, even one on a completely different domain.', 'path' => 'The "before" path to be redirected. When the user this path, s/he will be redirected to the path specified by target.', 'id' => 'The unique numeric identifier for the redirect.' }, 'WWW::Shopify::Model::ScriptTag' => { 'created_at' => 'The date and time when the ScriptTag was created. The API returns this value in ISO 8601 format.', 'updated_at' => 'The date and time when the ScriptTag was last updated. The API returns this value in ISO 8601 format.', 'src' => 'Specifies the location of the ScriptTag.', 'id' => 'The unique numeric identifier for the ScriptTag.', 'event' => 'DOM event which triggers the loading of the script. Valid values are: "onload."' }, 'WWW::Shopify::Model::Webhook' => { 'topic' => 'The event that will trigger the webhook. Valid values are: orders/create, orders/delete, orders/updated, orders/paid, orders/cancelled, orders/fulfilled, orders/partially_fulfilled, carts/create, carts/update, checkouts/create, checkouts/update, checkouts/delete, refunds/create, products/create, products/update, products/delete, collections/create, collections/update, collections/delete, customer_groups/create, customer_groups/update, customer_groups/delete, customers/create, customers/enable, customers/disable, customers/update, customers/delete, fulfillments/create, fulfillments/update, shop/update, app/uninstalled', 'created_at' => 'The date and time when the webhook was created. The API returns this value in ISO 8601 format.', 'format' => 'The format in which the webhook should send the data. Valid values are json and xml.', 'updated_at' => 'The date and time when the webhook was updated. The API returns this value in ISO 8601 format.', 'id' => 'The unique numeric identifier for the webhook.', 'address' => 'The URI where the webhook should send the POST request when the event occurs.' }, 'WWW::Shopify::Model::CustomCollection::Image' => { 'attachment' => 'An image attached to a shop\'s theme returned as Base64-encoded binary data.', 'src' => 'Source URL that specifies the location of the image.' } }; our @EXPORT_OK = qw(get_tooltip); sub get_tooltip { my ($package, $field_name) = @_; $package = WWW::Shopify->translate_model($package); return undef unless exists $tooltips->{$package} && $tooltips->{$package}->{$field_name}; return $tooltips->{$package}->{$field_name}; } 1;
<!DOCTYPE html PUBLIC "- <html xmlns="http: <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>bit by bit: Class Hierarchy</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">bit by bit &#160;<span id="projectnumber">0.0.1</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="<API key>"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Class Hierarchy</div> </div> </div><!--header <div class="contents"> <div class="textblock"> <p><a href="hierarchy.html">Go to the textual class hierarchy</a></p> </div><table border="0" cellspacing="10" cellpadding="0"> <tr><td><img src="inherit_graph_0.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d2/d94/<API key>.html" title="bbb::conjunction\&lt; cond \&gt;" alt="" coords="104,5,274,31"/> <area shape="rect" id="node3" href="d1/d42/<API key>.html" title="bbb::disjunction\&lt; cond \&gt;" alt="" coords="106,55,272,80"/> </map> </td></tr> <tr><td><img src="inherit_graph_1.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d4/d14/<API key>.html" title="bbb::conjunction\&lt; cond,\l conditions ... \&gt;" alt="" coords="150,5,312,44"/> <area shape="rect" id="node3" href="d4/da9/<API key>.html" title="bbb::disjunction\&lt; cond,\l conditions ... \&gt;" alt="" coords="152,68,310,107"/> </map> </td></tr> <tr><td><img src="inherit_graph_2.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d5/d8c/<API key>.html" title="bbb::conjunction\&lt; conditions \&gt;" alt="" coords="132,5,334,31"/> <area shape="rect" id="node3" href="d4/d68/structbbb_1_1container__info_1_1is__array_3_01std_1_1array_3_01type_00_01size_01_4_01_4.html" title="bbb::container_info\l::is_array\&lt; std::array\l\&lt; type, size \&gt; \&gt;" alt="" coords="161,55,305,107"/> <area shape="rect" id="node4" href="d7/da3/structbbb_1_1container__info_1_1is__basic__string_3_01std_1_1basic__string_3_01char__type_00_01c1b8d67729c8f352f44476b0eaa450f29.html" title="bbb::container_info\l::is_basic_string\&lt; std\l::basic_string\&lt; char_type,\l char_traits, alloc \&gt; \&gt;" alt="" coords="146,131,320,196"/> <area shape="rect" id="node5" href="d9/d0d/<API key>.html" title="bbb::container_info\l::is_bitset\&lt; std::bitset\l\&lt; size \&gt; \&gt;" alt="" coords="160,220,306,272"/> <area shape="rect" id="node6" href="d2/de5/structbbb_1_1container__info_1_1is__deque_3_01std_1_1deque_3_01type_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_deque\&lt; std::deque\l\&lt; type, alloc \&gt; \&gt;" alt="" coords="155,296,311,348"/> <area shape="rect" id="node7" href="d0/d6e/structbbb_1_1container__info_1_1is__forward__list_3_01std_1_1forward__list_3_01type_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_forward_list\&lt; std\l::forward_list\&lt; type,\l alloc \&gt; \&gt;" alt="" coords="161,372,305,437"/> <area shape="rect" id="node8" href="d2/d01/structbbb_1_1container__info_1_1is__initializer__list_3_01std_1_1initializer__list_3_01type_01_4_01_4.html" title="bbb::container_info\l::is_initializer_list\l\&lt; std::initializer_list\l\&lt; type \&gt; \&gt;" alt="" coords="166,461,300,527"/> <area shape="rect" id="node9" href="df/d9f/structbbb_1_1container__info_1_1is__list_3_01std_1_1list_3_01type_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_list\&lt; std::list\l\&lt; type, alloc \&gt; \&gt;" alt="" coords="166,551,300,603"/> <area shape="rect" id="node10" href="d6/da0/structbbb_1_1container__info_1_1is__map_3_01std_1_1map_3_01key_00_01value_00_01compare_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_map\&lt; std::map\&lt;\l key, value, compare,\l alloc \&gt; \&gt;" alt="" coords="159,627,307,692"/> <area shape="rect" id="node11" href="d1/de0/structbbb_1_1container__info_1_1is__multimap_3_01std_1_1multimap_3_01key_00_01value_00_01compare_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_multimap\&lt; std::\lmultimap\&lt; key, value,\l compare, alloc \&gt; \&gt;" alt="" coords="158,716,308,781"/> <area shape="rect" id="node12" href="de/d43/structbbb_1_1container__info_1_1is__multiset_3_01std_1_1multiset_3_01key_00_01compare_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_multiset\&lt; std::\lmultiset\&lt; key, compare,\l alloc \&gt; \&gt;" alt="" coords="152,805,314,871"/> <area shape="rect" id="node13" href="d8/d00/structbbb_1_1container__info_1_1is__set_3_01std_1_1set_3_01key_00_01compare_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_set\&lt; std::set\&lt;\l key, compare, alloc \&gt; \&gt;" alt="" coords="152,895,314,947"/> <area shape="rect" id="node14" href="db/d8d/structbbb_1_1container__info_1_1is__unordered__map_3_01std_1_1unordered__map_3_01key_00_01value_91358a8c274d3172671aefae66610bd0.html" title="bbb::container_info\l::is_unordered_map\&lt;\l std::unordered_map\&lt;\l key, value, hash, pred,\l alloc \&gt; \&gt;" alt="" coords="154,971,312,1049"/> <area shape="rect" id="node15" href="d0/dc0/structbbb_1_1container__info_1_1is__unordered__multimap_3_01std_1_1unordered__multimap_3_01key_0764346c959063f23aa46e672605d59ef.html" title="bbb::container_info\l::<API key>\l\&lt; std::unordered_multimap\l\&lt; key, value, hash, pred,\l alloc \&gt; \&gt;" alt="" coords="143,1073,323,1152"/> <area shape="rect" id="node16" href="d5/de6/structbbb_1_1container__info_1_1is__unordered__multiset_3_01std_1_1unordered__multiset_3_01key_016c78c5a05814d97d983ccf6ca206547.html" title="bbb::container_info\l::<API key>\l\&lt; std::unordered_multiset\l\&lt; key, hash, pred, alloc \&gt; \&gt;" alt="" coords="143,1176,323,1241"/> <area shape="rect" id="node17" href="d0/da1/structbbb_1_1container__info_1_1is__unordered__set_3_01std_1_1unordered__set_3_01key_00_01hash_00_01pred_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_unordered_set\&lt;\l std::unordered_set\&lt;\l key, hash, pred, alloc \&gt; \&gt;" alt="" coords="147,1265,320,1331"/> <area shape="rect" id="node18" href="d3/ddf/structbbb_1_1container__info_1_1is__vector_3_01std_1_1vector_3_01type_00_01alloc_01_4_01_4.html" title="bbb::container_info\l::is_vector\&lt; std::vector\l\&lt; type, alloc \&gt; \&gt;" alt="" coords="155,1355,311,1407"/> <area shape="rect" id="node19" href="d7/d98/structbbb_1_1function_1_1direct__lambda_1_1is__direct__function_3_01direct__function_3_01op_00_01holders_01_8_8_8_01_4_01_4.html" title="bbb::function::direct\l_lambda::is_direct_function\l\&lt; direct_function\&lt; op, holders\l ... \&gt; \&gt;" alt="" coords="135,1431,332,1496"/> <area shape="rect" id="node20" href="df/d07/<API key>.html" title="bbb::is_null_pointer\l\&lt; std::nullptr_t \&gt;" alt="" coords="165,1520,302,1559"/> <area shape="rect" id="node21" href="de/d5e/structbbb_1_1tmp_1_1type__sequences_1_1is__sequence_3_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequences\l::is_sequence\&lt; type_sequence\l\&lt; types ... \&gt; \&gt;" alt="" coords="130,1583,336,1635"/> </map> </td></tr> <tr><td><img src="inherit_graph_3.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d17/<API key>.html" title="bbb::const_reversed\l_range\&lt; Container \&gt;" alt="" coords="5,5,149,44"/> <area shape="rect" id="node2" href="d3/d24/<API key>.html" title="bbb::reversed_range\l\&lt; Container \&gt;" alt="" coords="197,5,341,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_4.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/d8f/<API key>.html" title="bbb::container::container\l_delegation\&lt; container \&gt;" alt="" coords="5,5,173,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_5.png" border="0" alt="" usemap="#bbb_1_1container_1_1functional__base_3_01array_3_01value__type_00_01allocator_01_4_00_01std_1_1vector_3_01value__type_00_01allocator_01_4_01_4"/> <map name="bbb_1_1container_1_1functional__base_3_01array_3_01value__type_00_01allocator_01_4_00_01std_1_1vector_3_01value__type_00_01allocator_01_4_01_4" id="bbb_1_1container_1_1functional__base_3_01array_3_01value__type_00_01allocator_01_4_00_01std_1_1vector_3_01value__type_00_01allocator_01_4_01_4"> <area shape="rect" id="node1" href="d2/dfe/<API key>.html" title="bbb::container::functional\l_base\&lt; array\&lt; value_type,\l allocator \&gt;, std::vector\l\&lt; value_type, allocator \&gt; \&gt;" alt="" coords="5,5,185,71"/> <area shape="rect" id="node2" href="d9/d12/<API key>.html" title="bbb::container::array\l\&lt; value_type, allocator \&gt;" alt="" coords="233,19,399,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_6.png" border="0" alt="" usemap="#bbb_1_1container_1_1functional__base_3_01container__type_00_01inner__container__t_01_4"/> <map name="bbb_1_1container_1_1functional__base_3_01container__type_00_01inner__container__t_01_4" id="bbb_1_1container_1_1functional__base_3_01container__type_00_01inner__container__t_01_4"> <area shape="rect" id="node1" href="d2/dfe/<API key>.html" title="bbb::container::functional\l_base\&lt; container_type, inner\l_container_t \&gt;" alt="" coords="5,5,199,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_7.png" border="0" alt="" usemap="#bbb_1_1container_1_1impl_1_1array__delegation_3_01array__t_00_01is__constexpressionable_01_4"/> <map name="bbb_1_1container_1_1impl_1_1array__delegation_3_01array__t_00_01is__constexpressionable_01_4" id="bbb_1_1container_1_1impl_1_1array__delegation_3_01array__t_00_01is__constexpressionable_01_4"> <area shape="rect" id="node1" href="d7/d2c/<API key>.html" title="bbb::container::impl\l::array_delegation\&lt; array\l_t, <API key> \&gt;" alt="" coords="5,5,195,57"/> <area shape="rect" id="node2" href="d4/d5a/structbbb_1_1container_1_1container__delegation_3_01std_1_1array_3_01value__t_00_01size_01_4_01_4.html" title="bbb::container::container\l_delegation\&lt; std::array\l\&lt; value_t, size \&gt; \&gt;" alt="" coords="243,5,411,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_8.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/d10/<API key>.html" title="bbb::container::impl\l::<API key>\l\&lt; array_t \&gt;" alt="" coords="5,44,170,96"/> <area shape="rect" id="node2" href="d1/d2d/<API key>.html" title="bbb::container::impl\l::array_delegation\&lt; array\l_t, false \&gt;" alt="" coords="218,5,388,57"/> <area shape="rect" id="node3" href="d3/d90/<API key>.html" title="bbb::container::impl\l::array_delegation\&lt; array\l_t, true \&gt;" alt="" coords="218,81,388,133"/> </map> </td></tr> <tr><td><img src="inherit_graph_9.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/d10/<API key>.html" title="bbb::container::impl\l::<API key>\l\&lt; container \&gt;" alt="" coords="5,5,170,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_10.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/da9/<API key>.html" title="bbb::container::impl\l::is_array\&lt; typename \&gt;" alt="" coords="5,5,163,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_11.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1detail_1_1back__inserter__provider_3_01container_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1detail_1_1back__inserter__provider_3_01container_01_4" id="bbb_1_1container_1_1iterator_1_1detail_1_1back__inserter__provider_3_01container_01_4"> <area shape="rect" id="node1" href="d5/dc7/<API key>.html" title="bbb::container::iterator\l::detail::back_inserter\l_provider\&lt; container \&gt;" alt="" coords="5,5,160,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_12.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1detail_1_1back__inserter__provider__not_3_01container_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1detail_1_1back__inserter__provider__not_3_01container_01_4" id="bbb_1_1container_1_1iterator_1_1detail_1_1back__inserter__provider__not_3_01container_01_4"> <area shape="rect" id="node1" href="d9/d99/<API key>.html" title="bbb::container::iterator\l::detail::back_inserter\l_provider_not\&lt; container \&gt;" alt="" coords="5,5,186,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_13.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1detail_1_1front__inserter__provider_3_01container_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1detail_1_1front__inserter__provider_3_01container_01_4" id="bbb_1_1container_1_1iterator_1_1detail_1_1front__inserter__provider_3_01container_01_4"> <area shape="rect" id="node1" href="d3/d91/<API key>.html" title="bbb::container::iterator\l::detail::front_inserter\l_provider\&lt; container \&gt;" alt="" coords="5,5,160,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_14.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1detail_1_1front__inserter__provider__not_3_01container_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1detail_1_1front__inserter__provider__not_3_01container_01_4" id="bbb_1_1container_1_1iterator_1_1detail_1_1front__inserter__provider__not_3_01container_01_4"> <area shape="rect" id="node1" href="dd/dbc/<API key>.html" title="bbb::container::iterator\l::detail::front_inserter\l_provider_not\&lt; container \&gt;" alt="" coords="5,5,186,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_15.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d1c/<API key>.html" title="bbb::container::iterator\l::detail::inserter_provider\l\&lt; container \&gt;" alt="" coords="5,5,173,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_16.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1detail_1_1inserter__provider__not_3_01container_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1detail_1_1inserter__provider__not_3_01container_01_4" id="bbb_1_1container_1_1iterator_1_1detail_1_1inserter__provider__not_3_01container_01_4"> <area shape="rect" id="node1" href="d7/d2b/<API key>.html" title="bbb::container::iterator\l::detail::inserter_provider\l_not\&lt; container \&gt;" alt="" coords="5,5,173,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_17.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/dfb/<API key>.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;" alt="" coords="5,5,163,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_18.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1back__insert__tester_3_01testee_00_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1back__insert__tester_3_01testee_00_01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1back__insert__tester_3_01testee_00_01_4"> <area shape="rect" id="node1" href="da/dcd/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1back__insert__tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::back_insert\l_tester\&lt; testee, \&gt;" alt="" coords="5,5,180,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_19.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__forward__iterator__check"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__forward__iterator__check" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__forward__iterator__check"> <area shape="rect" id="node1" href="d4/d7f/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1const__forward__iterator__check.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::const_forward\l_iterator_check" alt="" coords="5,5,196,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_20.png" border="0" alt="" usemap=" <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__forward__iterator__check_1_1tester_3_01testee_00_01___01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__forward__iterator__check_1_1tester_3_01testee_00_01___01_4"> <area shape="rect" id="node1" href="de/d86/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1const__forward__iterator__check_1_1tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::const_forward\l_iterator_check::tester\&lt; testee, _ \&gt;" alt="" coords="5,5,233,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_21.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__reverse__iterator__check"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__reverse__iterator__check" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__reverse__iterator__check"> <area shape="rect" id="node1" href="d3/dab/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1const__reverse__iterator__check.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::const_reverse\l_iterator_check" alt="" coords="5,5,196,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_22.png" border="0" alt="" usemap=" <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__reverse__iterator__check_1_1tester_3_01testee_00_01___01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1const__reverse__iterator__check_1_1tester_3_01testee_00_01___01_4"> <area shape="rect" id="node1" href="d8/d21/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1const__reverse__iterator__check_1_1tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::const_reverse\l_iterator_check::tester\&lt; testee, _ \&gt;" alt="" coords="5,5,233,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_23.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1forward__iterator__check"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1forward__iterator__check" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1forward__iterator__check"> <area shape="rect" id="node1" href="d0/d51/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1forward__iterator__check.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::<API key>" alt="" coords="5,5,248,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_24.png" border="0" alt="" usemap=" <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1forward__iterator__check_1_1tester_3_01testee_00_01___01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1forward__iterator__check_1_1tester_3_01testee_00_01___01_4"> <area shape="rect" id="node1" href="d4/dd9/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1forward__iterator__check_1_1tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::forward_iterator\l_check::tester\&lt; testee, _ \&gt;" alt="" coords="5,5,205,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_25.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1front__insert__tester_3_01testee_00_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1front__insert__tester_3_01testee_00_01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1front__insert__tester_3_01testee_00_01_4"> <area shape="rect" id="node1" href="d0/dff/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1front__insert__tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::front_insert\l_tester\&lt; testee, \&gt;" alt="" coords="5,5,179,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_26.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1insert__tester_3_01testee_00_01testee_1_1iterator_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1insert__tester_3_01testee_00_01testee_1_1iterator_01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1insert__tester_3_01testee_00_01testee_1_1iterator_01_4"> <area shape="rect" id="node1" href="de/d08/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1insert__tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::insert_tester\l\&lt; testee, testee::iterator \&gt;" alt="" coords="5,5,185,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_27.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1reverse__iterator__check"/> <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1reverse__iterator__check" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1reverse__iterator__check"> <area shape="rect" id="node1" href="d2/d26/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1reverse__iterator__check.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::<API key>" alt="" coords="5,5,248,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_28.png" border="0" alt="" usemap=" <map name="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1reverse__iterator__check_1_1tester_3_01testee_00_01___01_4" id="bbb_1_1container_1_1iterator_1_1iteratable__class__traits_3_01container_01_4_1_1reverse__iterator__check_1_1tester_3_01testee_00_01___01_4"> <area shape="rect" id="node1" href="d9/d7d/structbbb_1_1container_1_1iterator_1_1iteratable__class__traits_1_1reverse__iterator__check_1_1tester.html" title="bbb::container::iterator\l::<API key>\l\&lt; container \&gt;::reverse_iterator\l_check::tester\&lt; testee, _ \&gt;" alt="" coords="5,5,205,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_29.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d3/dc7/<API key>.html" title="bbb::container::iterator\l::iterator_providers\&lt; container \&gt;" alt="" coords="5,5,216,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_30.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1forward__iterator__provider__not__impl"/> <map name="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1forward__iterator__provider__not__impl" id="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1forward__iterator__provider__not__impl"> <area shape="rect" id="node1" href="df/df5/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1forward__iterator__provider__not__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>\l_not_impl" alt="" coords="5,5,204,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_31.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1mutable__forward__iterator__provider__impl"/> <map name="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1mutable__forward__iterator__provider__impl" id="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1mutable__forward__iterator__provider__impl"> <area shape="rect" id="node1" href="d2/d24/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1const__forward__iterator__provider__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>" alt="" coords="5,5,266,57"/> <area shape="rect" id="node2" href="d4/d18/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1forward__iterator__provider__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>" alt="" coords="314,47,535,99"/> <area shape="rect" id="node3" href="df/d75/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1mutable__forward__iterator__provider__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>\l_provider_impl" alt="" coords="36,81,235,147"/> </map> </td></tr> <tr><td><img src="inherit_graph_32.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1mutable__reverse__iterator__provider__impl"/> <map name="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1mutable__reverse__iterator__provider__impl" id="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1mutable__reverse__iterator__provider__impl"> <area shape="rect" id="node1" href="df/d93/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1const__reverse__iterator__provider__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>" alt="" coords="5,5,266,57"/> <area shape="rect" id="node2" href="d1/dac/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1reverse__iterator__provider__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>" alt="" coords="314,47,535,99"/> <area shape="rect" id="node3" href="dc/d58/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1mutable__reverse__iterator__provider__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>\l_provider_impl" alt="" coords="36,81,235,147"/> </map> </td></tr> <tr><td><img src="inherit_graph_33.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1reverse__iterator__provider__not__impl"/> <map name="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1reverse__iterator__provider__not__impl" id="bbb_1_1container_1_1iterator_1_1iterator__providers_3_01container_01_4_1_1reverse__iterator__provider__not__impl"> <area shape="rect" id="node1" href="d4/d76/structbbb_1_1container_1_1iterator_1_1iterator__providers_1_1reverse__iterator__provider__not__impl.html" title="bbb::container::iterator\l::iterator_providers\&lt; container\l \&gt;::<API key>\l_not_impl" alt="" coords="5,5,204,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_34.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01has__iterator_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01has__iterator_01_4" id="bbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01has__iterator_01_4"> <area shape="rect" id="node1" href="dc/dd5/<API key>.html" title="bbb::container::iterator\l::value_type_provider\&lt;\l container, has_iterator \&gt;" alt="" coords="5,5,174,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_35.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01true_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01true_01_4" id="bbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01true_01_4"> <area shape="rect" id="node1" href="d2/d6b/structbbb_1_1container_1_1iterator_1_1value__type__provider_3_01container_00_01true_01_4.html" title="bbb::container::iterator\l::value_type_provider\&lt;\l container, true \&gt;" alt="" coords="5,5,162,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_36.png" border="0" alt="" usemap="#bbb_1_1container_1_1iterator_1_1value__type__provider_3_01std_1_1vector_3_01value__t_00_01allocator__t_01_4_01_4"/> <map name="bbb_1_1container_1_1iterator_1_1value__type__provider_3_01std_1_1vector_3_01value__t_00_01allocator__t_01_4_01_4" id="bbb_1_1container_1_1iterator_1_1value__type__provider_3_01std_1_1vector_3_01value__t_00_01allocator__t_01_4_01_4"> <area shape="rect" id="node2" href="d1/d94/<API key>.html" title="bbb::container::iterator\l::iterator_delegation\&lt;\l container \&gt;" alt="" coords="325,125,480,177"/> <area shape="rect" id="node3" href="d1/d94/<API key>.html" title="bbb::container::iterator\l::iterator_delegation\&lt;\l inner_container_t \&gt;" alt="" coords="325,201,480,253"/> <area shape="rect" id="node5" href="d1/d94/<API key>.html" title="bbb::container::iterator\l::iterator_delegation\&lt;\l std::array\&lt; std::uint8\l_t, sizeof(T)\&gt; \&gt;" alt="" coords="325,277,480,343"/> <area shape="rect" id="node7" href="d1/d94/<API key>.html" title="bbb::container::iterator\l::iterator_delegation\&lt;\l std::vector\&lt; value_t, allocator_t \&gt; \&gt;" alt="" coords="286,367,519,419"/> <area shape="rect" id="node4" href="d1/d76/structbbb_1_1container_1_1functional__base_3_01container__type_3_01value__type_00_01others_01_8_6ac8e7996effe1aae06d72e9a485440d.html" title="bbb::container::functional\l_base\&lt; container_type\&lt; value\l_type, others ... \&gt;, inner\l_container_t \&gt;" alt="" coords="567,195,767,260"/> <area shape="rect" id="node6" href="d5/d3c/<API key>.html" title="bbb::container::byte\l_array\&lt; T \&gt;" alt="" coords="598,291,736,329"/> <area shape="rect" id="node8" href="de/da8/structbbb_1_1container_1_1container__delegation_3_01std_1_1vector_3_01value__t_00_01allocator__t_01_4_01_4.html" title="bbb::container::container\l_delegation\&lt; std::vector\l\&lt; value_t, allocator_t \&gt; \&gt;" alt="" coords="583,367,751,419"/> <area shape="rect" id="node13" href="dc/dd5/<API key>.html" title="bbb::container::iterator\l::value_type_provider\&lt;\l container \&gt;" alt="" coords="43,5,200,57"/> <area shape="rect" id="node14" href="dc/dd5/<API key>.html" title="bbb::container::iterator\l::value_type_provider\&lt;\l inner_container_t \&gt;" alt="" coords="43,81,200,133"/> <area shape="rect" id="node15" href="dc/dd5/<API key>.html" title="bbb::container::iterator\l::value_type_provider\&lt;\l std::array\&lt; std::uint8\l_t, sizeof(T)\&gt; \&gt;" alt="" coords="43,404,200,469"/> <area shape="rect" id="node16" href="dc/dd5/<API key>.html" title="bbb::container::iterator\l::value_type_provider\&lt;\l std::vector\&lt; value_t, allocator_t \&gt; \&gt;" alt="" coords="5,493,238,545"/> </map> </td></tr> <tr><td><img src="inherit_graph_37.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d7/d22/<API key>.html" title="bbb::container_info\l::container_traits\&lt;\l container \&gt;" alt="" coords="5,5,140,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_38.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d9/d7d/<API key>.html" title="bbb::container_info\l::is_array\&lt; type \&gt;" alt="" coords="167,5,301,44"/> <area shape="rect" id="node3" href="d4/d5e/<API key>.html" title="bbb::container_info\l::is_basic_string\&lt; type \&gt;" alt="" coords="151,68,317,107"/> <area shape="rect" id="node4" href="db/df5/<API key>.html" title="bbb::container_info\l::is_bitset\&lt; type \&gt;" alt="" coords="167,131,301,169"/> <area shape="rect" id="node5" href="da/d3d/<API key>.html" title="bbb::container_info\l::is_deque\&lt; type \&gt;" alt="" coords="167,193,301,232"/> <area shape="rect" id="node6" href="d5/dcc/<API key>.html" title="bbb::container_info\l::is_forward_list\&lt; type \&gt;" alt="" coords="153,256,315,295"/> <area shape="rect" id="node7" href="db/d99/<API key>.html" title="bbb::container_info\l::is_initializer_list\l\&lt; type \&gt;" alt="" coords="167,319,301,371"/> <area shape="rect" id="node8" href="d7/d59/<API key>.html" title="bbb::container_info\l::is_list\&lt; type \&gt;" alt="" coords="167,395,301,433"/> <area shape="rect" id="node9" href="d4/dae/<API key>.html" title="bbb::container_info\l::is_map\&lt; type \&gt;" alt="" coords="167,457,301,496"/> <area shape="rect" id="node10" href="dc/d29/<API key>.html" title="bbb::container_info\l::is_multimap\&lt; type \&gt;" alt="" coords="160,520,308,559"/> <area shape="rect" id="node11" href="d8/dfa/<API key>.html" title="bbb::container_info\l::is_multiset\&lt; type \&gt;" alt="" coords="164,583,304,621"/> <area shape="rect" id="node12" href="d1/d08/<API key>.html" title="bbb::container_info\l::is_set\&lt; type \&gt;" alt="" coords="167,645,301,684"/> <area shape="rect" id="node13" href="d0/d73/<API key>.html" title="bbb::container_info\l::is_unordered_map\&lt;\l type \&gt;" alt="" coords="160,708,308,760"/> <area shape="rect" id="node14" href="d3/d79/<API key>.html" title="bbb::container_info\l::<API key>\l\&lt; type \&gt;" alt="" coords="150,784,318,836"/> <area shape="rect" id="node15" href="d6/d4e/<API key>.html" title="bbb::container_info\l::<API key>\l\&lt; type \&gt;" alt="" coords="154,860,314,912"/> <area shape="rect" id="node16" href="d3/d7b/<API key>.html" title="bbb::container_info\l::is_unordered_set\&lt;\l type \&gt;" alt="" coords="164,936,304,988"/> <area shape="rect" id="node17" href="d6/dff/<API key>.html" title="bbb::container_info\l::is_vector\&lt; type \&gt;" alt="" coords="167,1012,301,1051"/> <area shape="rect" id="node18" href="de/dea/<API key>.html" title="bbb::disjunction\&lt; conditions \&gt;" alt="" coords="135,1075,332,1100"/> <area shape="rect" id="node19" href="d2/d8f/<API key>.html" title="bbb::function::direct\l_lambda::is_direct_function\l\&lt; typename \&gt;" alt="" coords="142,1124,326,1176"/> <area shape="rect" id="node20" href="d0/d1a/<API key>.html" title="bbb::is_null_pointer\l\&lt; type \&gt;" alt="" coords="165,1200,302,1239"/> <area shape="rect" id="node21" href="da/d69/<API key>.html" title="bbb::tmp::logic::is\l_in\&lt; needle \&gt;" alt="" coords="171,1263,296,1301"/> <area shape="rect" id="node22" href="d0/d49/<API key>.html" title="bbb::tmp::type_sequences\l::is_sequence\&lt; sequence \&gt;" alt="" coords="142,1325,326,1364"/> <area shape="rect" id="node23" href="de/dea/<API key>.html" title="bbb::disjunction\&lt; is\l_direct_function\&lt; type\l \&gt;, is_placeholder\&lt; type \&gt; \&gt;" alt="" coords="141,1388,327,1440"/> <area shape="rect" id="node24" href="d1/d14/<API key>.html" title="bbb::function::direct\l_lambda::is_direct_lambdable\l\&lt; type \&gt;" alt="" coords="380,1388,579,1440"/> </map> </td></tr> <tr><td><img src="inherit_graph_39.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d9/dbc/<API key>.html" title="bbb::container_info\l::is_container\&lt; type \&gt;" alt="" coords="213,5,362,44"/> <area shape="rect" id="node3" href="dd/de1/<API key>.html" title="bbb::container_info\l::is_kind_of_map\&lt; type \&gt;" alt="" coords="202,68,372,107"/> <area shape="rect" id="node4" href="d9/d65/<API key>.html" title="bbb::container_info\l::is_kind_of_set\&lt; type \&gt;" alt="" coords="206,131,368,169"/> </map> </td></tr> <tr><td><img src="inherit_graph_40.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/d6c/<API key>.html" title="bbb::container_info\l::substitute\&lt; container,\l type \&gt;" alt="" coords="5,5,160,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_41.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/d89/<API key>.html" title="bbb::dirty::reference\l::quasi_reference\&lt; type \&gt;" alt="" coords="5,5,178,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_42.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/d96/<API key>.html" title="bbb::dirty::reference\l::quasi_reference\&lt; type\l \&gt;::ref" alt="" coords="5,5,166,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_43.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; base\l_type \&gt;" alt="" coords="5,12,163,51"/> <area shape="rect" id="node2" href="d4/d83/structbbb_1_1tmp_1_1inheritance_1_1search__inherited__type_3_01base__type_00_01default__type_01_4.html" title="bbb::tmp::inheritance\l::<API key>\l\&lt; base_type, default_type \&gt;" alt="" coords="211,5,397,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_44.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; embedding\l_type \&gt;" alt="" coords="5,5,200,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_45.png" border="0" alt="" usemap="#bbb_1_1embedding_3_01resolve__t_3_01conditional__t_3_01n_0A_0A0_00_01defer_3_01integer__sequence_3_01integer__type_00_01ns_01_8_8_8_01_4_01_4_00_01detail_1_1make__integer__sequence_3_01integer__type_00_01n_01<API key>"/> <map name="bbb_1_1embedding_3_01resolve__t_3_01conditional__t_3_01n_0A_0A0_00_01defer_3_01integer__sequence_3_01integer__type_00_01ns_01_8_8_8_01_4_01_4_00_01detail_1_1make__integer__sequence_3_01integer__type_00_01n_01<API key>" id="bbb_1_1embedding_3_01resolve__t_3_01conditional__t_3_01n_0A_0A0_00_01defer_3_01integer__sequence_3_01integer__type_00_01ns_01_8_8_8_01_4_01_4_00_01detail_1_1make__integer__sequence_3_01integer__type_00_01n_01<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; resolve\l_t\&lt; conditional_t\&lt; n=\l=0, defer\&lt; integer_sequence\l\&lt; integer_type, ns ... \&gt; \&gt;\l, detail::<API key>\l\&lt; integer_type, n &#45; 1, n &#45; 1,\l ns ... \&gt; \&gt; \&gt; \&gt;" alt="" coords="5,5,219,111"/> <area shape="rect" id="node2" href="dc/d98/<API key>.html" title="bbb::tmp::integer_sequences\l::detail::<API key>\l\&lt; integer_type, n, ns \&gt;" alt="" coords="267,32,481,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_46.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::array\&lt; new_type, size \&gt; \&gt;" alt="" coords="5,12,187,51"/> <area shape="rect" id="node2" href="d3/d9a/structbbb_1_1container__info_1_1substitute_3_01std_1_1array_3_01value__type_00_01size_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::array\l\&lt; value_type, size \&gt;, new_type \&gt;" alt="" coords="235,5,451,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_47.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::basic_string\&lt; new\l_char_type \&gt; \&gt;" alt="" coords="5,12,152,64"/> <area shape="rect" id="node2" href="d8/d3b/structbbb_1_1container__info_1_1substitute_3_01std_1_1basic__string_3_01char__type_00_01char__tre5986323e0e581d7537b1b12b134a0a1.html" title="bbb::container_info\l::substitute\&lt; std::basic\l_string\&lt; char_type, char\l_traits, alloc \&gt;, new_char_type \&gt;" alt="" coords="200,5,413,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_48.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::deque\&lt; new_type \&gt; \&gt;" alt="" coords="5,19,163,57"/> <area shape="rect" id="node2" href="d6/d7d/structbbb_1_1container__info_1_1substitute_3_01std_1_1deque_3_01value__type_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::deque\l\&lt; value_type, alloc \&gt;,\l new_type \&gt;" alt="" coords="211,5,370,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_49.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::forward_list\&lt; new\l_type \&gt; \&gt;" alt="" coords="5,12,152,64"/> <area shape="rect" id="node2" href="dc/dca/structbbb_1_1container__info_1_1substitute_3_01std_1_1forward__list_3_01value__type_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::forward\l_list\&lt; value_type, alloc\l \&gt;, new_type \&gt;" alt="" coords="200,5,367,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_50.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::initializer_list\&lt;\l new_type \&gt; \&gt;" alt="" coords="5,5,152,57"/> <area shape="rect" id="node2" href="dc/dbc/structbbb_1_1container__info_1_1substitute_3_01std_1_1initializer__list_3_01value__type_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::initializer\l_list\&lt; value_type \&gt;, new_type \&gt;" alt="" coords="200,5,408,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_51.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::list\&lt; new_type \&gt; \&gt;" alt="" coords="5,19,152,57"/> <area shape="rect" id="node2" href="d3/db5/structbbb_1_1container__info_1_1substitute_3_01std_1_1list_3_01value__type_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::list\l\&lt; value_type, alloc \&gt;,\l new_type \&gt;" alt="" coords="200,5,347,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_52.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::map\&lt; key, new_type \&gt; \&gt;" alt="" coords="5,19,179,57"/> <area shape="rect" id="node2" href="de/dfb/structbbb_1_1container__info_1_1substitute_3_01std_1_1map_3_01key_00_01value_00_01compare_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::map\l\&lt; key, value, compare,\l alloc \&gt;, new_type \&gt;" alt="" coords="227,5,382,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_53.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::multimap\&lt; key, new\l_type \&gt; \&gt;" alt="" coords="5,12,152,64"/> <area shape="rect" id="node2" href="d1/d52/structbbb_1_1container__info_1_1substitute_3_01std_1_1multimap_3_01key_00_01value_00_01compare_04640aaa618badbe0bd25e0aba5e0ea88.html" title="bbb::container_info\l::substitute\&lt; std::multimap\l\&lt; key, value, compare, alloc\l \&gt;, new_type \&gt;" alt="" coords="200,5,386,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_54.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::multiset\&lt; new_type \&gt; \&gt;" alt="" coords="5,19,172,57"/> <area shape="rect" id="node2" href="d2/d0b/structbbb_1_1container__info_1_1substitute_3_01std_1_1multiset_3_01key_00_01compare_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::multiset\l\&lt; key, compare, alloc \&gt;,\l new_type \&gt;" alt="" coords="220,5,388,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_55.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::set\&lt; new_type \&gt; \&gt;" alt="" coords="5,19,152,57"/> <area shape="rect" id="node2" href="d8/dac/structbbb_1_1container__info_1_1substitute_3_01std_1_1set_3_01key_00_01compare_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::set\l\&lt; key, compare, alloc\l \&gt;, new_type \&gt;" alt="" coords="200,5,346,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_56.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::unordered_map\&lt; key,\l new_type \&gt; \&gt;" alt="" coords="5,12,163,64"/> <area shape="rect" id="node2" href="d9/d57/structbbb_1_1container__info_1_1substitute_3_01std_1_1unordered__map_3_01key_00_01value_00_01hasf95ea2602d6a467f8a11335c2a1bc079.html" title="bbb::container_info\l::substitute\&lt; std::unordered\l_map\&lt; key, value, hash, pred,\l alloc \&gt;, new_type \&gt;" alt="" coords="211,5,411,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_57.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::unordered_multimap\l\&lt; key, new_type \&gt; \&gt;" alt="" coords="5,12,156,64"/> <area shape="rect" id="node2" href="d0/df4/structbbb_1_1container__info_1_1substitute_3_01std_1_1unordered__multimap_3_01key_00_01value_00_929f76e4a39c390feb025214663d30f6.html" title="bbb::container_info\l::substitute\&lt; std::unordered\l_multimap\&lt; key, value, hash,\l pred, alloc \&gt;, new_type \&gt;" alt="" coords="204,5,398,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_58.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::unordered_multiset\l\&lt; new_type \&gt; \&gt;" alt="" coords="5,12,152,64"/> <area shape="rect" id="node2" href="d7/da6/structbbb_1_1container__info_1_1substitute_3_01std_1_1unordered__multiset_3_01key_00_01hash_00_070cb6a8b235d208faaf3ff2ff613cf90.html" title="bbb::container_info\l::substitute\&lt; std::unordered\l_multiset\&lt; key, hash, pred,\l alloc \&gt;, new_type \&gt;" alt="" coords="200,5,383,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_59.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::unordered_set\&lt; new\l_type \&gt; \&gt;" alt="" coords="5,12,156,64"/> <area shape="rect" id="node2" href="d3/dc0/structbbb_1_1container__info_1_1substitute_3_01std_1_1unordered__set_3_01key_00_01hash_00_01pred58238ec9faaa9176e1872f73a4ca1a67.html" title="bbb::container_info\l::substitute\&lt; std::unordered\l_set\&lt; key, hash, pred, alloc\l \&gt;, new_type \&gt;" alt="" coords="204,5,387,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_60.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; std\l::vector\&lt; new_type \&gt; \&gt;" alt="" coords="5,12,162,51"/> <area shape="rect" id="node2" href="d9/d89/structbbb_1_1container__info_1_1substitute_3_01std_1_1vector_3_01value__type_00_01alloc_01_4_00_01new__type_01_4.html" title="bbb::container_info\l::substitute\&lt; std::vector\l\&lt; value_type, alloc \&gt;, new_type \&gt;" alt="" coords="210,5,430,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_61.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/dd4/<API key>.html" title="bbb::embedding\&lt; type\l_sequence\&lt;\&gt; \&gt;" alt="" coords="5,51,159,89"/> <area shape="rect" id="node2" href="d0/d4b/structbbb_1_1tmp_1_1inheritance_1_1multiple__inheritance__impl_3_01type__sequence_3_4_01_4.html" title="bbb::tmp::inheritance\l::<API key>\l_impl\&lt; type_sequence\&lt;\&gt; \&gt;" alt="" coords="225,5,407,57"/> <area shape="rect" id="node3" href="d9/dfc/structbbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_01_4.html" title="bbb::tmp::inheritance\l::<API key>\l_impl\&lt; base_type, default_type \&gt;" alt="" coords="207,81,425,133"/> </map> </td></tr> <tr><td><img src="inherit_graph_62.png" border="0" alt="" usemap="#bbb_1_1enumeratable_1_1enumeratable__iterator_3_01Container_00_01inner__iterator_00_01value__type_01_4"/> <map name="bbb_1_1enumeratable_1_1enumeratable__iterator_3_01Container_00_01inner__iterator_00_01value__type_01_4" id="bbb_1_1enumeratable_1_1enumeratable__iterator_3_01Container_00_01inner__iterator_00_01value__type_01_4"> <area shape="rect" id="node2" href="d2/d64/<API key>.html" title="bbb::enumeratable::\<API key>\l\&lt; Container, inner_iterator,\l value_type \&gt;" alt="" coords="116,5,295,71"/> <area shape="rect" id="node3" href="d0/d97/<API key>.html" title="bbb::range::range_iterator" alt="" coords="118,95,293,120"/> <area shape="rect" id="node4" href="d2/d62/<API key>.html" title="bbb::reusable_array\l_iterator\&lt; const T, s \&gt;" alt="" coords="131,144,280,183"/> <area shape="rect" id="node5" href="d7/d3b/<API key>.html" title="bbb::reusable_array\l_reverse_iterator\&lt; const\l T, s \&gt;" alt="" coords="123,207,288,259"/> <area shape="rect" id="node6" href="dc/d19/<API key>.html" title="bbb::reusable_array\l_reverse_iterator\&lt; T, s \&gt;" alt="" coords="343,213,509,252"/> </map> </td></tr> <tr><td><img src="inherit_graph_63.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/d7a/<API key>.html" title="bbb::enumeratable::\<API key>\l\&lt; const Container \&gt;" alt="" coords="5,5,164,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_64.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/dad/<API key>.html" title="bbb::enumeratable::\<API key>\l\&lt; Container \&gt;" alt="" coords="5,5,164,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_65.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/d13/<API key>.html" title="bbb::enumeratable::\lenumerating_value\&lt; const\l value_type \&gt;" alt="" coords="5,5,183,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_66.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/d7a/<API key>.html" title="bbb::enumeratable::\lenumerating_value\&lt; value\l_type \&gt;" alt="" coords="5,5,183,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_67.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dd/dd1/<API key>.html" title="bbb::explicit_types\l::explicit_type\&lt; type_ \&gt;" alt="" coords="5,5,163,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_68.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d9/de1/<API key>.html" title="bbb::flex_array\&lt; value\l_t, size_ \&gt;" alt="" coords="5,5,158,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_69.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d8/d53/<API key>.html" title="bbb::flex_array\&lt; value\l_t, size_, sizes \&gt;" alt="" coords="5,5,158,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_70.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="db/d13/<API key>.html" title="bbb::function::direct\l_lambda::detail::index\l_type\&lt; n \&gt;" alt="" coords="5,5,156,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_71.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="db/d6a/<API key>.html" title="bbb::function::direct\l_lambda::detail::to_number\&lt; c \&gt;" alt="" coords="5,5,218,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_72.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/de9/<API key>.html" title="bbb::function::direct\l_lambda::detail::to_number\l\&lt; c, chars \&gt;" alt="" coords="5,5,188,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_73.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/d12/<API key>.html" title="bbb::function::direct\l_lambda::direct_function\l\&lt; op, holders \&gt;" alt="" coords="5,5,172,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_74.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1direct__function_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1direct__function_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_4" id="bbb_1_1function_1_1direct__lambda_1_1direct__function_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_4"> <area shape="rect" id="node1" href="d4/d12/<API key>.html" title="bbb::function::direct\l_lambda::direct_function\l\&lt; op_type::const_value_holder,\l const value_t &amp;\&gt;" alt="" coords="5,5,212,71"/> <area shape="rect" id="node2" href="d7/d6a/<API key>.html" title="bbb::function::direct\l_lambda::const_value\l_holder\&lt; value_t \&gt;" alt="" coords="260,12,411,64"/> </map> </td></tr> <tr><td><img src="inherit_graph_75.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1direct__function_3_01op__type_1_1value__holder_00_01value__t_01_6_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1direct__function_3_01op__type_1_1value__holder_00_01value__t_01_6_4" id="bbb_1_1function_1_1direct__lambda_1_1direct__function_3_01op__type_1_1value__holder_00_01value__t_01_6_4"> <area shape="rect" id="node1" href="d4/d12/<API key>.html" title="bbb::function::direct\l_lambda::direct_function\l\&lt; op_type::value_holder,\l value_t &amp;\&gt;" alt="" coords="5,5,172,71"/> <area shape="rect" id="node2" href="d4/d4b/<API key>.html" title="bbb::function::direct\l_lambda::value_holder\l\&lt; value_t \&gt;" alt="" coords="220,12,377,64"/> </map> </td></tr> <tr><td><img src="inherit_graph_76.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d8a/<API key>.html" title="bbb::function::direct\l_lambda::eval\&lt; op, holders \&gt;" alt="" coords="5,5,199,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_77.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_01_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_01_4" id="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_01_4"> <area shape="rect" id="node1" href="d0/d7c/structbbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1const__value__holder_00_01const_01value__t_01_6_01_4.html" title="bbb::function::direct\l_lambda::eval\&lt; op_type\l::const_value_holder, const\l value_t &amp; \&gt;" alt="" coords="5,5,188,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_78.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1placeholder_00_01detail_1_1index__type_3_01n_01_4_01_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1placeholder_00_01detail_1_1index__type_3_01n_01_4_01_4" id="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1placeholder_00_01detail_1_1index__type_3_01n_01_4_01_4"> <area shape="rect" id="node1" href="d1/d5c/structbbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1placeholder_00_01detail_1_1index__type_3_01n_01_4_01_4.html" title="bbb::function::direct\l_lambda::eval\&lt; op_type\l::placeholder, detail::\lindex_type\&lt; n \&gt; \&gt;" alt="" coords="5,5,169,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_79.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1unary__func__apply_00_01function__type_00_01argument__type_01_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1unary__func__apply_00_01function__type_00_01argument__type_01_4" id="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1unary__func__apply_00_01function__type_00_01argument__type_01_4"> <area shape="rect" id="node1" href="d2/dc1/structbbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1unary__func__apply_00_01function__type_00_01argument__type_01_4.html" title="bbb::function::direct\l_lambda::eval\&lt; op_type\l::unary_func_apply, function\l_type, argument_type \&gt;" alt="" coords="5,5,192,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_80.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1value__holder_00_01value__t_01_6_01_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1value__holder_00_01value__t_01_6_01_4" id="bbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1value__holder_00_01value__t_01_6_01_4"> <area shape="rect" id="node1" href="d1/dd6/structbbb_1_1function_1_1direct__lambda_1_1eval_3_01op__type_1_1value__holder_00_01value__t_01_6_01_4.html" title="bbb::function::direct\l_lambda::eval\&lt; op_type\l::value_holder, value_t &amp; \&gt;" alt="" coords="5,5,184,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_81.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1is__placeholder_3_01placeholder_3_01n_01_4_01_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1is__placeholder_3_01placeholder_3_01n_01_4_01_4" id="bbb_1_1function_1_1direct__lambda_1_1is__placeholder_3_01placeholder_3_01n_01_4_01_4"> <area shape="rect" id="node1" href="d7/dfc/structbbb_1_1function_1_1direct__lambda_1_1is__placeholder_3_01placeholder_3_01n_01_4_01_4.html" title="bbb::function::direct\l_lambda::is_placeholder\l\&lt; placeholder\&lt; n \&gt; \&gt;" alt="" coords="5,5,171,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_82.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/d51/<API key>.html" title="bbb::function::direct\l_lambda::is_placeholder\l\&lt; type \&gt;" alt="" coords="5,5,171,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_83.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d7/d40/<API key>.html" title="bbb::function::direct\l_lambda::null_value" alt="" coords="5,5,145,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_84.png" border="0" alt="" usemap="#bbb_1_1function_1_1direct__lambda_1_1wrap__const__value__type_3_01value__type_01_4"/> <map name="bbb_1_1function_1_1direct__lambda_1_1wrap__const__value__type_3_01value__type_01_4" id="bbb_1_1function_1_1direct__lambda_1_1wrap__const__value__type_3_01value__type_01_4"> <area shape="rect" id="node1" href="d4/d47/<API key>.html" title="bbb::function::direct\l_lambda::wrap_const_value\l_type\&lt; value_type \&gt;" alt="" coords="5,5,193,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_85.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d8/dd3/<API key>.html" title="bbb::function::direct\l_lambda::wrap_value_type\l\&lt; value_type \&gt;" alt="" coords="5,5,186,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_86.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/dca/<API key>.html" title="bbb::function::lambda\l_symbol::detail::apply\l\&lt; callee \&gt;" alt="" coords="5,5,155,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_87.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/d10/<API key>.html" title="bbb::function::lambda\l_symbol::detail::bnot_op" alt="" coords="5,5,171,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_88.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d1b/<API key>.html" title="bbb::function::lambda\l_symbol::detail::call" alt="" coords="5,5,154,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_89.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/d34/<API key>.html" title="bbb::function::lambda\l_symbol::detail::lnot_op" alt="" coords="5,5,167,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_90.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/d34/<API key>.html" title="bbb::function::lambda\l_symbol::detail::post\l_dec_op" alt="" coords="5,5,154,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_91.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/dc8/<API key>.html" title="bbb::function::lambda\l_symbol::detail::post\l_inc_op" alt="" coords="5,5,154,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_92.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/dd3/<API key>.html" title="bbb::function::lambda\l_symbol::detail::pre\l_dec_op" alt="" coords="5,5,154,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_93.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/df6/<API key>.html" title="bbb::function::lambda\l_symbol::detail::pre\l_inc_op" alt="" coords="5,5,154,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_94.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/daf/<API key>.html" title="bbb::function::lambda\l_symbol::detail::subscript\l\&lt; server \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_95.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/db8/<API key>.html" title="bbb::function_info\l::arity\&lt; T \&gt;" alt="" coords="5,5,132,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_96.png" border="0" alt="" usemap="#bbb_1_1function__info_1_1detail_1_1function__traits_3_01ret_00_01arguments_01_8_8_8_01_4"/> <map name="bbb_1_1function__info_1_1detail_1_1function__traits_3_01ret_00_01arguments_01_8_8_8_01_4" id="bbb_1_1function__info_1_1detail_1_1function__traits_3_01ret_00_01arguments_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d6/d85/<API key>.html" title="bbb::function_info\l::detail::function_traits\l\&lt; ret, arguments ... \&gt;" alt="" coords="5,164,156,216"/> <area shape="rect" id="node2" href="dd/d9f/structbbb_1_1function__info_1_1function__traits_3_01ret_07_5_08_07arguments_01_8_8_8_08_4.html" title="bbb::function_info\l::function_traits\&lt; ret\l(*)(arguments ...)\&gt;" alt="" coords="235,5,374,57"/> <area shape="rect" id="node3" href="db/dbe/structbbb_1_1function__info_1_1function__traits_3_01ret_07arguments_01_8_8_8_08_4.html" title="bbb::function_info\l::function_traits\&lt; ret\l(arguments ...)\&gt;" alt="" coords="235,81,374,133"/> <area shape="rect" id="node4" href="db/d7c/structbbb_1_1function__info_1_1function__traits_3_01ret_07class__type_1_1_5_08_07arguments_01_8_8_8_08_01const_01_4.html" title="bbb::function_info\l::function_traits\&lt; ret\l(class_type::*)(arguments\l ...) const \&gt;" alt="" coords="218,157,391,223"/> <area shape="rect" id="node5" href="de/dde/structbbb_1_1function__info_1_1function__traits_3_01ret_07class__type_1_1_5_08_07arguments_01_8_8_8_08_4.html" title="bbb::function_info\l::function_traits\&lt; ret\l(class_type::*)(arguments ...)\&gt;" alt="" coords="204,247,405,299"/> <area shape="rect" id="node6" href="d4/dd3/structbbb_1_1function__info_1_1function__traits_3_01std_1_1function_3_01ret_07arguments_01_8_8_8_08_4_01_4.html" title="bbb::function_info\l::function_traits\&lt; std\l::function\&lt; ret(arguments\l ...)\&gt; \&gt;" alt="" coords="220,323,389,388"/> </map> </td></tr> <tr><td><img src="inherit_graph_97.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/d85/<API key>.html" title="bbb::function_info\l::detail::function_traits\l\&lt; ret, arguments \&gt;" alt="" coords="5,5,156,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_98.png" border="0" alt="" usemap="#bbb_1_1function__info_1_1function__traits_3_01decltype_07_6T_1_1operator_07_08_08_4"/> <map name="bbb_1_1function__info_1_1function__traits_3_01decltype_07_6T_1_1operator_07_08_08_4" id="bbb_1_1function__info_1_1function__traits_3_01decltype_07_6T_1_1operator_07_08_08_4"> <area shape="rect" id="node1" href="d7/d0e/<API key>.html" title="bbb::function_info\l::function_traits\&lt; decltype\l(&amp;T::operator())\&gt;" alt="" coords="5,5,178,57"/> <area shape="rect" id="node2" href="d7/d0e/<API key>.html" title="bbb::function_info\l::function_traits\&lt; T \&gt;" alt="" coords="226,12,369,51"/> </map> </td></tr> <tr><td><img src="inherit_graph_99.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/da8/<API key>.html" title="bbb::function_info\l::has_call_operator\l\&lt; patient \&gt;" alt="" coords="5,5,140,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_100.png" border="0" alt="" usemap="#bbb_1_1function__info_1_1has__call__operator_3_01patient_01_4_1_1checker_3_01inner__patient_00_01operator_4"/> <map name="bbb_1_1function__info_1_1has__call__operator_3_01patient_01_4_1_1checker_3_01inner__patient_00_01operator_4" id="bbb_1_1function__info_1_1has__call__operator_3_01patient_01_4_1_1checker_3_01inner__patient_00_01operator_4"> <area shape="rect" id="node1" href="de/d38/<API key>.html" title="bbb::function_info\l::has_call_operator\l\&lt; patient \&gt;::checker\l\&lt; inner_patient, operator\&gt;" alt="" coords="5,5,180,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_101.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d3b/<API key>.html" title="bbb::loggers::detail\l::logger_stream\&lt; logger \&gt;" alt="" coords="5,5,179,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_102.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d12/<API key>.html" title="bbb::loggers::detail\l::stream_adaptor\&lt; holder \&gt;" alt="" coords="5,5,188,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_103.png" border="0" alt="" usemap="#bbb_1_1loggers_1_1detail_1_1stream__adaptor_3_01tmp_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1loggers_1_1detail_1_1stream__adaptor_3_01tmp_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4_01_4" id="bbb_1_1loggers_1_1detail_1_1stream__adaptor_3_01tmp_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d9/d96/structbbb_1_1loggers_1_1detail_1_1stream__adaptor_3_01tmp_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4_01_4.html" title="bbb::loggers::detail\l::stream_adaptor\&lt; tmp\l::type_sequence\&lt; type,\l types ... \&gt; \&gt;" alt="" coords="5,5,165,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_104.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d9/d02/structbbb_1_1loggers_1_1detail_1_1stream__adaptor_3_01tmp_1_1type__sequence_3_4_01_4.html" title="bbb::loggers::detail\l::stream_adaptor\&lt; tmp\l::type_sequence\&lt;\&gt; \&gt;" alt="" coords="5,5,161,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_105.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d3/dd4/<API key>.html" title="bbb::loggers::footer" alt="" coords="5,44,142,69"/> <area shape="rect" id="node2" href="d3/dff/<API key>.html" title="bbb::loggers::elapsed\l_time_footer" alt="" coords="190,5,338,44"/> <area shape="rect" id="node3" href="d0/d36/<API key>.html" title="bbb::loggers::time\l_footer" alt="" coords="200,68,328,107"/> </map> </td></tr> <tr><td><img src="inherit_graph_106.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/d8d/<API key>.html" title="bbb::loggers::header" alt="" coords="5,44,149,69"/> <area shape="rect" id="node2" href="d0/d34/<API key>.html" title="bbb::loggers::elapsed\l_time_header" alt="" coords="197,5,346,44"/> <area shape="rect" id="node3" href="d2/d43/<API key>.html" title="bbb::loggers::time\l_header" alt="" coords="208,68,335,107"/> </map> </td></tr> <tr><td><img src="inherit_graph_107.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/d0b/<API key>.html" title="bbb::loggers::log_level\l_manager" alt="" coords="5,5,160,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_108.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d1/d72/<API key>.html" title="bbb::loggers::null\l_ostream" alt="" coords="123,5,246,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_109.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d5/d45/<API key>.html" title="bbb::loggers::null\l_streambuf" alt="" coords="134,5,257,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_110.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/de5/<API key>.html" title="bbb::loggers::separater" alt="" coords="5,44,164,69"/> <area shape="rect" id="node2" href="dc/d1f/<API key>.html" title="bbb::loggers::camma\l_separater" alt="" coords="212,5,358,44"/> <area shape="rect" id="node3" href="d4/d3d/<API key>.html" title="bbb::loggers::space\l_separater" alt="" coords="216,68,354,107"/> </map> </td></tr> <tr><td><img src="inherit_graph_111.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/dd4/<API key>.html" title="bbb::loggers::stream" alt="" coords="5,137,148,163"/> <area shape="rect" id="node2" href="d7/dd2/<API key>.html" title="bbb::loggers::console\l_stream" alt="" coords="196,5,344,44"/> <area shape="rect" id="node3" href="df/d02/<API key>.html" title="bbb::loggers::error\l_stream" alt="" coords="205,68,335,107"/> <area shape="rect" id="node4" href="dc/d1f/<API key>.html" title="bbb::loggers::file\l_stream" alt="" coords="211,131,330,169"/> <area shape="rect" id="node5" href="d7/d04/<API key>.html" title="bbb::loggers::null\l_stream" alt="" coords="209,193,332,232"/> <area shape="rect" id="node6" href="d7/d24/<API key>.html" title="bbb::loggers::string\l_stream" alt="" coords="203,256,338,295"/> </map> </td></tr> <tr><td><img src="inherit_graph_112.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/d15/<API key>.html" title="bbb::multiply\&lt; size \&gt;" alt="" coords="5,5,148,31"/> </map> </td></tr> <tr><td><img src="inherit_graph_113.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dc/d7d/<API key>.html" title="bbb::multiply\&lt; size,\l sizes \&gt;" alt="" coords="5,5,140,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_114.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/dc1/<API key>.html" title="bbb::multithread::manager" alt="" coords="5,5,182,31"/> </map> </td></tr> <tr><td><img src="inherit_graph_115.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d1/d6a/<API key>.html" title="bbb::negation\&lt; cond \&gt;" alt="" coords="158,5,312,31"/> </map> </td></tr> <tr><td><img src="inherit_graph_116.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/d97/<API key>.html" title="bbb::notifiers::arithmetic\l_notifier\&lt; type \&gt;" alt="" coords="5,5,168,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_117.png" border="0" alt="" usemap="#bbb_1_1notifiers_1_1detail_1_1is__basic__string_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4"/> <map name="bbb_1_1notifiers_1_1detail_1_1is__basic__string_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4" id="bbb_1_1notifiers_1_1detail_1_1is__basic__string_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4"> <area shape="rect" id="node1" href="da/db9/structbbb_1_1notifiers_1_1detail_1_1is__basic__string_3_01std_1_1basic__string_3_01character__ty63e06f5c0eb5879fc4bf5a78f97d5d08.html" title="bbb::notifiers::detail\l::is_basic_string\&lt; std\l::basic_string\&lt; character\l_type, traits, alloc \&gt; \&gt;" alt="" coords="5,5,172,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_118.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/dac/<API key>.html" title="bbb::notifiers::detail\l::is_basic_string\&lt; typename \&gt;" alt="" coords="5,5,204,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_119.png" border="0" alt="" usemap=" <map name="bbb_1_1notifiers_1_1detail_1_1notifier_3_01type___00_01enable__if__t_3_01is__basic__string_3_01type___01_4_1_1value_01_4_01_4" id="bbb_1_1notifiers_1_1detail_1_1notifier_3_01type___00_01enable__if__t_3_01is__basic__string_3_01type___01_4_1_1value_01_4_01_4"> <area shape="rect" id="node1" href="d3/d57/structbbb_1_1notifiers_1_1detail_1_1notifier_3_01type___00_01enable__if__t_3_01is__basic__string6b2b9e206bf42d672bc1f0d1998fe22a.html" title="bbb::notifiers::detail\l::notifier\&lt; type_, enable\l_if_t\&lt; is_basic_string\&lt; type\l_ \&gt;::value \&gt; \&gt;" alt="" coords="5,5,188,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_120.png" border="0" alt="" usemap=" <map name="bbb_1_1notifiers_1_1detail_1_1notifier_3_01type___00_01enable__if__t_3_01is__number__f_3_01type___01_4_07_08_4_01_4" id="bbb_1_1notifiers_1_1detail_1_1notifier_3_01type___00_01enable__if__t_3_01is__number__f_3_01type___01_4_07_08_4_01_4"> <area shape="rect" id="node1" href="d0/da1/structbbb_1_1notifiers_1_1detail_1_1notifier_3_01type___00_01enable__if__t_3_01is__number__f_3_01type___01_4_07_08_4_01_4.html" title="bbb::notifiers::detail\l::notifier\&lt; type_, enable\l_if_t\&lt; is_number_f\&lt; type\l_ \&gt;()\&gt; \&gt;" alt="" coords="5,5,173,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_121.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d3/d7a/<API key>.html" title="bbb::notifiers::detail\l::notifier\&lt; typename,\l typename \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_122.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dd/d31/<API key>.html" title="bbb::notifiers::referenced\<API key>\&lt; type \&gt;" alt="" coords="5,5,187,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_123.png" border="0" alt="" usemap="#bbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4"/> <map name="bbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4" id="bbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4"> <area shape="rect" id="node2" href="da/da4/structbbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4.html" title="bbb::notifiers::string\l_notifier\&lt; std::basic\l_string\&lt; character_type,\l traits, alloc \&gt; \&gt;" alt="" coords="146,5,311,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_124.png" border="0" alt="" usemap="#bbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4_1_1iterator"/> <map name="bbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4_1_1iterator" id="bbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01traits_00_01alloc_01_4_01_4_1_1iterator"> <area shape="rect" id="node2" href="da/d59/structbbb_1_1notifiers_1_1string__notifier_3_01std_1_1basic__string_3_01character__type_00_01tra6a3c647c9bb32302af07691694e071c9.html" title="bbb::notifiers::string\l_notifier\&lt; std::basic\l_string\&lt; character_type,\l traits, alloc \&gt; \&gt;::iterator" alt="" coords="153,5,318,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_125.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/dfa/<API key>.html" title="bbb::notifiers::string\l_notifier\&lt; typename \&gt;" alt="" coords="5,5,156,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_126.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/dd6/<API key>.html" title="bbb::pipe::command\l::filter\&lt; argument_type \&gt;" alt="" coords="5,5,171,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_127.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/dd3/<API key>.html" title="bbb::pipe::command\l::join\&lt; char_type, traits,\l alloc \&gt;" alt="" coords="5,5,165,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_128.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/d60/<API key>.html" title="bbb::pipe::command\l::map\&lt; result_type,\l argument_type \&gt;" alt="" coords="5,5,147,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_129.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="df/d90/<API key>.html" title="bbb::pipe::command\l::replace\&lt; char_type,\l traits, alloc \&gt;" alt="" coords="5,5,152,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_130.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="df/d51/<API key>.html" title="bbb::pipe::command\l::reverse" alt="" coords="5,5,147,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_131.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/dbc/<API key>.html" title="bbb::pipe::command\l::split\&lt; char_type,\l traits, alloc \&gt;" alt="" coords="5,5,147,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_132.png" border="0" alt="" usemap="#bbb_1_1range"/> <map name="bbb_1_1range" id="bbb_1_1range"> <area shape="rect" id="node1" href="d0/dcf/classbbb_1_1range.html" title="bbb::range" alt="" coords="5,5,90,31"/> </map> </td></tr> <tr><td><img src="inherit_graph_133.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/d8a/<API key>.html" title="bbb::reusable_array\l\&lt; T, s \&gt;" alt="" coords="5,5,145,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_134.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dc/d27/<API key>.html" title="bbb::reusable_array\l_iterator\&lt; T, s \&gt;" alt="" coords="5,5,145,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_135.png" border="0" alt="" usemap="#bbb_1_1stop__watch"/> <map name="bbb_1_1stop__watch" id="bbb_1_1stop__watch"> <area shape="rect" id="node1" href="dd/d0e/<API key>.html" title="bbb::stop_watch" alt="" coords="5,5,124,31"/> </map> </td></tr> <tr><td><img src="inherit_graph_136.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/dd2/<API key>.html" title="bbb::<API key>\l\&lt; condition, t, f \&gt;" alt="" coords="5,5,179,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_137.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/d09/<API key>.html" title="bbb::<API key>\l\&lt; meta_conditions \&gt;" alt="" coords="5,5,182,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_138.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="da/dad/<API key>.html" title="bbb::<API key>\l\&lt; meta_conditions \&gt;" alt="" coords="5,5,178,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_139.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d7/d4c/<API key>.html" title="bbb::tmp::inheritance\l::<API key>\l_impl\&lt; holder \&gt;" alt="" coords="5,5,153,57"/> <area shape="rect" id="node2" href="d2/dbf/<API key>.html" title="bbb::loggers::custom\l_logger\&lt; configs \&gt;" alt="" coords="201,12,346,51"/> </map> </td></tr> <tr><td><img src="inherit_graph_140.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1inheritance_1_1multiple__inheritance__impl_3_01type__sequence_3_01base__types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1inheritance_1_1multiple__inheritance__impl_3_01type__sequence_3_01base__types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1inheritance_1_1multiple__inheritance__impl_3_01type__sequence_3_01base__types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node2" href="d5/db6/structbbb_1_1tmp_1_1inheritance_1_1multiple__inheritance__impl_3_01type__sequence_3_01base__types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::inheritance\l::<API key>\l_impl\&lt; type_sequence\&lt; base\l_types ... \&gt; \&gt;" alt="" coords="143,5,338,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_141.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1inheritance_1_1search__inherited__type_3_01base__type_00_01default__type_00_01configs_01_4"/> <map name="bbb_1_1tmp_1_1inheritance_1_1search__inherited__type_3_01base__type_00_01default__type_00_01configs_01_4" id="bbb_1_1tmp_1_1inheritance_1_1search__inherited__type_3_01base__type_00_01default__type_00_01configs_01_4"> <area shape="rect" id="node1" href="d4/df4/<API key>.html" title="bbb::tmp::inheritance\l::<API key>\l\&lt; base_type, default_type,\l configs \&gt;" alt="" coords="5,5,183,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_142.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1inheritance_1_1search__inherited__types_3_01base__type_00_01default__type_00_01configs_01_4"/> <map name="bbb_1_1tmp_1_1inheritance_1_1search__inherited__types_3_01base__type_00_01default__type_00_01configs_01_4" id="bbb_1_1tmp_1_1inheritance_1_1search__inherited__types_3_01base__type_00_01default__type_00_01configs_01_4"> <area shape="rect" id="node1" href="d1/df3/<API key>.html" title="bbb::tmp::inheritance\l::<API key>\l\&lt; base_type, default_type,\l configs \&gt;" alt="" coords="5,5,183,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_143.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_00_01config_00_01configs_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_00_01config_00_01configs_01_8_8_8_01_4" id="bbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_00_01config_00_01configs_01_8_8_8_01_4"> <area shape="rect" id="node1" href="de/da7/structbbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__t0291637bc74c7362a7eb51374d2471e5.html" title="bbb::tmp::inheritance\l::<API key>\l_impl\&lt; base_type, default\l_type, config, configs ... \&gt;" alt="" coords="5,5,179,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_144.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_00_01configs_01_4"/> <map name="bbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_00_01configs_01_4" id="bbb_1_1tmp_1_1inheritance_1_1search__inherited__types__impl_3_01base__type_00_01default__type_00_01configs_01_4"> <area shape="rect" id="node1" href="dd/dcd/<API key>.html" title="bbb::tmp::inheritance\l::<API key>\l_impl\&lt; base_type, default\l_type, configs \&gt;" alt="" coords="5,5,179,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_145.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_01integer__type_00_01indices1_01_8_8_8_01_4_00_01integer__sequence_3_01integer__type_00_01indices2_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_01integer__type_00_01indices1_01_8_8_8_01_4_00_01integer__sequence_3_01integer__type_00_01indices2_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_01integer__type_00_01indices1_01_8_8_8_01_4_00_01integer__sequence_3_01integer__type_00_01indices2_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d6/d43/structbbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_0167082b87cacef41ed3b6d202e9d50636.html" title="bbb::tmp::integer_sequence\l_operations::detail::concat\l\&lt; integer_sequence\&lt; integer\l_type, indices1 ... \&gt;, integer\l_sequence\&lt; integer_type, indices2 ... \&gt; \&gt;" alt="" coords="5,5,271,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_146.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_01integer__type_00_01indices1_01_8_8_8_01_4_00_01integer__sequence_3_01integer__type_00_01indices2_01_8_8_8_01_4_00_01sequence_00_01sequences_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_01integer__type_00_01indices1_01_8_8_8_01_4_00_01integer__sequence_3_01integer__type_00_01indices2_01_8_8_8_01_4_00_01sequence_00_01sequences_01_8_8_8_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_01integer__type_00_01indices1_01_8_8_8_01_4_00_01integer__sequence_3_01integer__type_00_01indices2_01_8_8_8_01_4_00_01sequence_00_01sequences_01_8_8_8_01_4"> <area shape="rect" id="node1" href="df/daf/structbbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01integer__sequence_3_014ccb827c4557aaf63b61ad7b204b4c6d.html" title="bbb::tmp::integer_sequence\l_operations::detail::concat\l\&lt; integer_sequence\&lt; integer\l_type, indices1 ... \&gt;, integer\l_sequence\&lt; integer_type, indices2\l ... \&gt;, sequence, sequences ... \&gt;" alt="" coords="5,5,233,97"/> </map> </td></tr> <tr><td><img src="inherit_graph_147.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01sequence1_00_01sequence2_00_01sequences_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01sequence1_00_01sequence2_00_01sequences_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1concat_3_01sequence1_00_01sequence2_00_01sequences_01_4"> <area shape="rect" id="node1" href="d1/d1f/<API key>.html" title="bbb::tmp::integer_sequence\l_operations::detail::concat\l\&lt; sequence1, sequence2, sequences \&gt;" alt="" coords="5,5,259,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_148.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1deferred__prepend_3_01integer__type_00_01sequence_00_01val_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1deferred__prepend_3_01integer__type_00_01sequence_00_01val_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1deferred__prepend_3_01integer__type_00_01sequence_00_01val_01_4"> <area shape="rect" id="node1" href="de/d71/<API key>.html" title="bbb::tmp::integer_sequence\l_operations::detail::deferred\l_prepend\&lt; integer_type, sequence, val \&gt;" alt="" coords="5,5,269,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_149.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1make__integer__range_3_01integer__type_00_01from_00_01to_00_01offset_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1make__integer__range_3_01integer__type_00_01from_00_01to_00_01offset_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1make__integer__range_3_01integer__type_00_01from_00_01to_00_01offset_01_4"> <area shape="rect" id="node1" href="dc/dc9/structbbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1make__integer__range.html" title="bbb::tmp::integer_sequence\l_operations::detail::make\l_integer_range\&lt; integer_type,\l from, to, offset \&gt;" alt="" coords="5,5,205,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_150.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_01integer__sequence_3_01integer__type_00_01fronts_01_8_8_8_01_4_00_01backs_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_01integer__sequence_3_01integer__type_00_01fronts_01_8_8_8_01_4_00_01backs_01_8_8_8_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_01integer__sequence_3_01integer__type_00_01fronts_01_8_8_8_01_4_00_01backs_01_8_8_8_01_4"> <area shape="rect" id="node1" href="df/d48/structbbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_0a4c60000f8c42b5f5f4d0dae4c788edb.html" title="bbb::tmp::integer_sequence\l_operations::detail::push\l_back\&lt; integer_type, integer\l_sequence\&lt; integer_type, fronts\l ... \&gt;, backs ... \&gt;" alt="" coords="5,5,218,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_151.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_01sequence_00_01backs_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_01sequence_00_01backs_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__back_3_01integer__type_00_01sequence_00_01backs_01_4"> <area shape="rect" id="node1" href="df/df5/<API key>.html" title="bbb::tmp::integer_sequence\l_operations::detail::push\l_back\&lt; integer_type, sequence,\l backs \&gt;" alt="" coords="5,5,216,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_152.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_01integer__sequence_3_01integer__type_00_01backs_01_8_8_8_01_4_00_01fronts_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_01integer__sequence_3_01integer__type_00_01backs_01_8_8_8_01_4_00_01fronts_01_8_8_8_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_01integer__sequence_3_01integer__type_00_01backs_01_8_8_8_01_4_00_01fronts_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d4/dbe/structbbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_bc09a56e1c368f89657378f24dfbd7c1.html" title="bbb::tmp::integer_sequence\l_operations::detail::push\l_front\&lt; integer_type, integer\l_sequence\&lt; integer_type, backs\l ... \&gt;, fronts ... \&gt;" alt="" coords="5,5,219,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_153.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_01sequence_00_01fronts_01_4"/> <map name="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_01sequence_00_01fronts_01_4" id="bbb_1_1tmp_1_1integer__sequence__operations_1_1detail_1_1push__front_3_01integer__type_00_01sequence_00_01fronts_01_4"> <area shape="rect" id="node1" href="db/d11/<API key>.html" title="bbb::tmp::integer_sequence\l_operations::detail::push\l_front\&lt; integer_type, sequence,\l fronts \&gt;" alt="" coords="5,5,215,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_154.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d0/d8b/<API key>.html" title="bbb::tmp::integer_sequences\l::integer_sequence\&lt; type, ns \&gt;" alt="" coords="5,5,210,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_155.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="df/dd8/<API key>.html" title="bbb::tmp::logic::detail\l::all\&lt; pred \&gt;" alt="" coords="5,5,153,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_156.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1logic_1_1detail_1_1all_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1logic_1_1detail_1_1all_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4" id="bbb_1_1tmp_1_1logic_1_1detail_1_1all_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d6/d03/structbbb_1_1tmp_1_1logic_1_1detail_1_1all_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4.html" title="bbb::tmp::logic::detail\l::all\&lt; pred, argument,\l arguments ... \&gt;" alt="" coords="5,5,153,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_157.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/d16/<API key>.html" title="bbb::tmp::logic::detail\l::all\&lt; pred, arguments \&gt;" alt="" coords="5,5,167,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_158.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/dd6/<API key>.html" title="bbb::tmp::logic::detail\l::any\&lt; pred \&gt;" alt="" coords="5,5,153,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_159.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1logic_1_1detail_1_1any_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1logic_1_1detail_1_1any_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4" id="bbb_1_1tmp_1_1logic_1_1detail_1_1any_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4"> <area shape="rect" id="node1" href="dc/d7a/structbbb_1_1tmp_1_1logic_1_1detail_1_1any_3_01pred_00_01argument_00_01arguments_01_8_8_8_01_4.html" title="bbb::tmp::logic::detail\l::any\&lt; pred, argument,\l arguments ... \&gt;" alt="" coords="5,5,161,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_160.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d61/<API key>.html" title="bbb::tmp::logic::detail\l::any\&lt; pred, arguments \&gt;" alt="" coords="5,5,176,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_161.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dc/d90/structbbb_1_1tmp_1_1logic_1_1is__in_3_01needle_00_01type_00_01types_01_8_8_8_01_4.html" title="bbb::tmp::logic::is\l_in\&lt; needle, type, types ... \&gt;" alt="" coords="5,5,194,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_162.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dc/dd5/<API key>.html" title="bbb::tmp::logic::is\l_in\&lt; type, types \&gt;" alt="" coords="5,5,132,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_163.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01sequence_00_01other__args_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01sequence_00_01other__args_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01sequence_00_01other__args_01_4"> <area shape="rect" id="node1" href="d0/dc6/<API key>.html" title="bbb::tmp::type_sequence\l_operations::apply\&lt; func,\l sequence, other_args \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_164.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01type__sequence_3_01ts_01_8_8_8_01_4_00_01other__args_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01type__sequence_3_01ts_01_8_8_8_01_4_00_01other__args_01_8_8_8_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01type__sequence_3_01ts_01_8_8_8_01_4_00_01other__args_01_8_8_8_01_4"> <area shape="rect" id="node1" href="df/d38/structbbb_1_1tmp_1_1type__sequence__operations_1_1apply_3_01func_00_01type__sequence_3_01ts_01_8ee1e5c85b9a105ec7aad412e47175a29.html" title="bbb::tmp::type_sequence\l_operations::apply\&lt; func,\l type_sequence\&lt; ts ... \&gt;\l, other_args ... \&gt;" alt="" coords="5,5,176,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_165.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/dbe/<API key>.html" title="bbb::tmp::type_sequence\l_operations::concat\&lt; s, t \&gt;" alt="" coords="5,5,184,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_166.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1concat_3_01type__sequence_3_01ss_01_8_8_8_01_4_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1concat_3_01type__sequence_3_01ss_01_8_8_8_01_4_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1concat_3_01type__sequence_3_01ss_01_8_8_8_01_4_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d9/dd2/structbbb_1_1tmp_1_1type__sequence__operations_1_1concat_3_01type__sequence_3_01ss_01_8_8_8_01_4f7382d7e5a8ba8a39d0f6d7d456be3e4.html" title="bbb::tmp::type_sequence\l_operations::concat\&lt; type\l_sequence\&lt; ss ... \&gt;, type\l_sequence\&lt; ts ... \&gt; \&gt;" alt="" coords="5,5,180,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_167.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1detail_1_1map__push__front_3_01t_00_01meta__sequence_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1detail_1_1map__push__front_3_01t_00_01meta__sequence_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1detail_1_1map__push__front_3_01t_00_01meta__sequence_01_4"> <area shape="rect" id="node1" href="d1/d6e/<API key>.html" title="bbb::tmp::type_sequence\l_operations::detail::map\l_push_front\&lt; t, meta_sequence \&gt;" alt="" coords="5,5,226,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_168.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01holder_00_01holders_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01holder_00_01holders_01_8_8_8_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01holder_00_01holders_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d0/d5d/structbbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01holder_00_01holders_01_8_8_8_01_4.html" title="bbb::tmp::type_sequence\l_operations::flatten\&lt;\l holder, holders ... \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_169.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d3/d57/<API key>.html" title="bbb::tmp::type_sequence\l_operations::flatten\&lt;\l holders \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_170.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d9/d91/<API key>.html" title="bbb::tmp::type_sequence\l_operations::flatten\&lt;\l non_holded \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_171.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01type__sequence_3_01holded_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01type__sequence_3_01holded_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01type__sequence_3_01holded_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d7/d59/structbbb_1_1tmp_1_1type__sequence__operations_1_1flatten_3_01type__sequence_3_01holded_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::flatten\&lt;\l type_sequence\&lt; holded\l ... \&gt; \&gt;" alt="" coords="5,5,176,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_172.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d4/d4c/<API key>.html" title="bbb::tmp::type_sequence\l_operations::flatten\&lt;\&gt;" alt="" coords="5,5,176,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_173.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01integer__sequence_3_01integer__type_00_01ns_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01integer__sequence_3_01integer__type_00_01ns_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01integer__sequence_3_01integer__type_00_01ns_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="dc/d6e/structbbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01integer__sequence_2d999cc843db45716646e17c031c8701.html" title="bbb::tmp::type_sequence\l_operations::from_integer\l_sequence\&lt; integer_sequence\l\&lt; integer_type, ns ... \&gt; \&gt;" alt="" coords="5,5,209,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_174.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01sequence_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01sequence_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1from__integer__sequence_3_01sequence_01_4"> <area shape="rect" id="node1" href="d3/d0b/<API key>.html" title="bbb::tmp::type_sequence\l_operations::from_integer\l_sequence\&lt; sequence \&gt;" alt="" coords="5,5,179,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_175.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01sequence_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01sequence_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01sequence_01_4"> <area shape="rect" id="node1" href="d0/d82/<API key>.html" title="bbb::tmp::type_sequence\l_operations::insert\&lt; t,\l index, sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_176.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d8/d17/structbbb_1_1tmp_1_1type__sequence__operations_1_1insert_3_01t_00_01index_00_01type__sequence_3_01ts_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::insert\&lt; t,\l index, type_sequence\&lt;\l ts ... \&gt; \&gt;" alt="" coords="5,5,176,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_177.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="df/d86/<API key>.html" title="bbb::tmp::type_sequence\l_operations::make_combination\&lt; t \&gt;" alt="" coords="5,5,242,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_178.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1make__combination_3_01t_00_01ts_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1make__combination_3_01t_00_01ts_01_8_8_8_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1make__combination_3_01t_00_01ts_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d0/df6/structbbb_1_1tmp_1_1type__sequence__operations_1_1make__combination_3_01t_00_01ts_01_8_8_8_01_4.html" title="bbb::tmp::type_sequence\l_operations::make_combination\l\&lt; t, ts ... \&gt;" alt="" coords="5,5,216,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_179.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d3/d00/<API key>.html" title="bbb::tmp::type_sequence\l_operations::make_combination\&lt; ts \&gt;" alt="" coords="5,5,249,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_180.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dc/d2e/<API key>.html" title="bbb::tmp::type_sequence\l_operations::make_combination\&lt;\&gt;" alt="" coords="5,5,231,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_181.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d6/d99/<API key>.html" title="calculate difference of sequences &quot;s &#160;t&quot; " alt="" coords="5,5,202,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_182.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_01t_00_01ts_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_01t_00_01ts_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_01t_00_01ts_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="db/dd4/structbbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_01t_00_01ts_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::make_difference\l\&lt; s, type_sequence\&lt; t, ts ... \&gt; \&gt;" alt="" coords="5,5,213,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_183.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_4_01_4"> <area shape="rect" id="node1" href="dd/dcf/structbbb_1_1tmp_1_1type__sequence__operations_1_1make__difference_3_01s_00_01type__sequence_3_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::make_difference\l\&lt; s, type_sequence\&lt;\&gt; \&gt;" alt="" coords="5,5,202,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_184.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01type__sequence_3_01us_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01type__sequence_3_01us_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01type__sequence_3_01us_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="db/d3b/structbbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01type__sequence_3_01us_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::make_direct\l_product\&lt; t, type_sequence\l\&lt; us ... \&gt; \&gt;" alt="" coords="5,5,192,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_185.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01u_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01u_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1make__direct__product_3_01t_00_01u_01_4"> <area shape="rect" id="node1" href="d5/da0/<API key>.html" title="bbb::tmp::type_sequence\l_operations::make_direct\l_product\&lt; t, u \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_186.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d9/d60/<API key>.html" title="bbb::tmp::type_sequence\l_operations::make_unique\l\&lt; sequence \&gt;" alt="" coords="5,5,184,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_187.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1make__unique_3_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1make__unique_3_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1make__unique_3_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d2/d69/structbbb_1_1tmp_1_1type__sequence__operations_1_1make__unique_3_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::make_unique\l\&lt; type_sequence\&lt; types ... \&gt; \&gt;" alt="" coords="5,5,210,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_188.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d6b/<API key>.html" title="bbb::tmp::type_sequence\l_operations::map\&lt; function,\l sequence \&gt;" alt="" coords="5,5,192,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_189.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1map_3_01function_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1map_3_01function_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1map_3_01function_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d8/d4b/structbbb_1_1tmp_1_1type__sequence__operations_1_1map_3_01function_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::map\&lt; function,\l type_sequence\&lt; types ... \&gt; \&gt;" alt="" coords="5,5,202,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_190.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="db/dcf/<API key>.html" title="bbb::tmp::type_sequence\l_operations::push_back\l\&lt; t, sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_191.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1push__back_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1push__back_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1push__back_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="dc/daa/structbbb_1_1tmp_1_1type__sequence__operations_1_1push__back_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::push_back\l\&lt; t, type_sequence\&lt; types\l ... \&gt; \&gt;" alt="" coords="5,5,183,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_192.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d4a/<API key>.html" title="bbb::tmp::type_sequence\l_operations::push_front\l\&lt; t, sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_193.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1push__front_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1push__front_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1push__front_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="dd/d20/structbbb_1_1tmp_1_1type__sequence__operations_1_1push__front_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::push_front\l\&lt; t, type_sequence\&lt; types\l ... \&gt; \&gt;" alt="" coords="5,5,183,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_194.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01sequence_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01sequence_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01sequence_01_4"> <area shape="rect" id="node1" href="d0/d02/<API key>.html" title="bbb::tmp::type_sequence\l_operations::reduce\&lt; function,\l initial, sequence \&gt;" alt="" coords="5,5,206,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_195.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d6/dcb/structbbb_1_1tmp_1_1type__sequence__operations_1_1reduce_3_01function_00_01initial_00_01type__sed79c92147fc319d8fe64814f202c4338.html" title="bbb::tmp::type_sequence\l_operations::reduce\&lt; function,\l initial, type_sequence\&lt; types ... \&gt; \&gt;" alt="" coords="5,5,240,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_196.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/d65/<API key>.html" title="bbb::tmp::type_sequence\l_operations::remove\&lt; t,\l sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_197.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1remove_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1remove_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1remove_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d0/d0d/structbbb_1_1tmp_1_1type__sequence__operations_1_1remove_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::remove\&lt; t,\l type_sequence\&lt; types ... \&gt; \&gt;" alt="" coords="5,5,202,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_198.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/d66/<API key>.html" title="bbb::tmp::type_sequence\l_operations::remove_all\l\&lt; t, sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_199.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1remove__all_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1remove__all_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1remove__all_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="dc/df0/structbbb_1_1tmp_1_1type__sequence__operations_1_1remove__all_3_01t_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::remove_all\l\&lt; t, type_sequence\&lt; types\l ... \&gt; \&gt;" alt="" coords="5,5,183,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_200.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01sequence_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01sequence_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01sequence_01_4"> <area shape="rect" id="node1" href="da/d97/<API key>.html" title="bbb::tmp::type_sequence\l_operations::slice\&lt; from,\l to, sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_201.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d9/d7d/structbbb_1_1tmp_1_1type__sequence__operations_1_1slice_3_01from_00_01to_00_01type__sequence_3_01types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::type_sequence\l_operations::slice\&lt; from,\l to, type_sequence\&lt; types\l ... \&gt; \&gt;" alt="" coords="5,5,183,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_202.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01sequence_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01sequence_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01sequence_01_4"> <area shape="rect" id="node1" href="d5/dd3/<API key>.html" title="bbb::tmp::type_sequence\l_operations::to_integer\l_sequence\&lt; sequence \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_203.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01type__sequence_3_01std_1_1integral__constant_3_01integer__type_00_01ns_01_4_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01type__sequence_3_01std_1_1integral__constant_3_01integer__type_00_01ns_01_4_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01type__sequence_3_01std_1_1integral__constant_3_01integer__type_00_01ns_01_4_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="d7/d48/structbbb_1_1tmp_1_1type__sequence__operations_1_1to__integer__sequence_3_01type__sequence_3_01sd3a842fe64dcc2babfb368ec10d19482.html" title="bbb::tmp::type_sequence\l_operations::to_integer\l_sequence\&lt; type_sequence\l\&lt; std::integral_constant\l\&lt; integer_type, ns \&gt; ... \&gt; \&gt;" alt="" coords="5,5,194,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_204.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1type__sequences_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1type__sequences_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4" id="bbb_1_1tmp_1_1type__sequences_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d6/dc4/structbbb_1_1tmp_1_1type__sequences_1_1type__sequence_3_01type_00_01types_01_8_8_8_01_4.html" title="bbb::tmp::type_sequences\l::type_sequence\&lt; type,\l types ... \&gt;" alt="" coords="5,5,183,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_205.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d8/dca/<API key>.html" title="bbb::tmp::type_sequences\l::type_sequence\&lt; types \&gt;" alt="" coords="5,5,183,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_206.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dd/db1/<API key>.html" title="bbb::tmp::type_sequences\l::type_sequence\&lt;\&gt;" alt="" coords="5,5,183,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_207.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="db/d1e/<API key>.html" title="bbb::tmp::type_set\l_operations::push\&lt; s,\l set \&gt;" alt="" coords="5,5,155,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_208.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d3/d0a/<API key>.html" title="bbb::tmp::type_set\l_operations::remove\l\&lt; t, set \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_209.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="db/dfa/<API key>.html" title="bbb::tmp::type_sets\l::type_set\&lt; types \&gt;" alt="" coords="5,5,143,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_210.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d7/dfd/<API key>.html" title="bbb::tmp::utility::\lalias\&lt; t \&gt;" alt="" coords="5,5,124,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_211.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/d58/<API key>.html" title="bbb::tmp::utility::\ldefer\&lt; t \&gt;" alt="" coords="5,5,124,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_212.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="dd/dc7/<API key>.html" title="bbb::tmp::utility::\ldetail::deep_alias\&lt;\l type_, 0L \&gt;" alt="" coords="5,5,138,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_213.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d9/d4b/<API key>.html" title="bbb::tmp::utility::\ldetail::deep_alias\&lt;\l type_, depth \&gt;" alt="" coords="5,5,138,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_214.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1utility_1_1detail_1_1remove__alias_3_01alias_3_01raw__type_01_4_01_4"/> <map name="bbb_1_1tmp_1_1utility_1_1detail_1_1remove__alias_3_01alias_3_01raw__type_01_4_01_4" id="bbb_1_1tmp_1_1utility_1_1detail_1_1remove__alias_3_01alias_3_01raw__type_01_4_01_4"> <area shape="rect" id="node1" href="d9/d42/structbbb_1_1tmp_1_1utility_1_1detail_1_1remove__alias_3_01alias_3_01raw__type_01_4_01_4.html" title="bbb::tmp::utility::\ldetail::remove_alias\l\&lt; alias\&lt; raw_type \&gt; \&gt;" alt="" coords="5,5,154,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_215.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d7/d81/<API key>.html" title="bbb::tmp::utility::\ldetail::remove_alias\l\&lt; raw_type \&gt;" alt="" coords="5,5,145,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_216.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1utility_1_1detail_1_1remove__aliases_3_01alias_3_01raw__type_01_4_01_4"/> <map name="bbb_1_1tmp_1_1utility_1_1detail_1_1remove__aliases_3_01alias_3_01raw__type_01_4_01_4" id="bbb_1_1tmp_1_1utility_1_1detail_1_1remove__aliases_3_01alias_3_01raw__type_01_4_01_4"> <area shape="rect" id="node1" href="d2/d95/structbbb_1_1tmp_1_1utility_1_1detail_1_1remove__aliases_3_01alias_3_01raw__type_01_4_01_4.html" title="bbb::tmp::utility::\ldetail::remove_aliases\l\&lt; alias\&lt; raw_type \&gt; \&gt;" alt="" coords="5,5,159,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_217.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/de0/<API key>.html" title="bbb::tmp::utility::\ldetail::remove_aliases\l\&lt; raw_type \&gt;" alt="" coords="5,5,159,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_218.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01false_00_01t_00_01ts_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01false_00_01t_00_01ts_01_8_8_8_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01false_00_01t_00_01ts_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d0/d45/structbbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__indeab0eab85e93861b839c75b2eb7cfe2eb.html" title="bbb::tmp::variadic\l_operations::detail\l::insert\&lt; x, index, current\l_index, false, t, ts ... \&gt;" alt="" coords="5,5,173,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_219.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01is__current__index__eq__index_00_01ts_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01is__current__index__eq__index_00_01ts_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01is__current__index__eq__index_00_01ts_01_4"> <area shape="rect" id="node1" href="dd/d86/<API key>.html" title="bbb::tmp::variadic\l_operations::detail\l::insert\&lt; x, index, current\l_index, is_current_index\l_eq_index, ts \&gt;" alt="" coords="5,5,173,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_220.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01true_00_01ts_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01true_00_01ts_01_8_8_8_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__index_00_01true_00_01ts_01_8_8_8_01_4"> <area shape="rect" id="node1" href="db/d6e/structbbb_1_1tmp_1_1variadic__operations_1_1detail_1_1insert_3_01x_00_01index_00_01current__indea87713e9468a2d76348da98d44cb8f75.html" title="bbb::tmp::variadic\l_operations::detail\l::insert\&lt; x, index, current\l_index, true, ts ... \&gt;" alt="" coords="5,5,173,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_221.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01holder_00_01types_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01holder_00_01types_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01holder_00_01types_01_4"> <area shape="rect" id="node1" href="d6/d70/<API key>.html" title="bbb::tmp::variadic\l_operations::detail\l::make_unique\&lt; holder,\l types \&gt;" alt="" coords="5,5,166,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_222.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_01_4"> <area shape="rect" id="node1" href="db/d61/structbbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_01_4.html" title="bbb::tmp::variadic\l_operations::detail\l::make_unique\&lt; type_sequence\l\&lt; holded_types ... \&gt; \&gt;" alt="" coords="5,5,216,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_223.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_00_01first_00_01types_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_00_01first_00_01types_01_8_8_8_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded__types_01_8_8_8_01_4_00_01first_00_01types_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d5/d59/structbbb_1_1tmp_1_1variadic__operations_1_1detail_1_1make__unique_3_01type__sequence_3_01holded45f3d27dd76faf608b8329f9610e0ec8.html" title="bbb::tmp::variadic\l_operations::detail\l::make_unique\&lt; type_sequence\l\&lt; holded_types ... \&gt;, first,\l types ... \&gt;" alt="" coords="5,5,216,84"/> </map> </td></tr> <tr><td><img src="inherit_graph_224.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01index__sequence_3_01indices_01_8_8_8_01_4_00_01types_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01index__sequence_3_01indices_01_8_8_8_01_4_00_01types_01_8_8_8_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01index__sequence_3_01indices_01_8_8_8_01_4_00_01types_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d5/d02/structbbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01index__sequence_3_01indices_01_80b1da1bb99aabd507a345847b89ef379.html" title="bbb::tmp::variadic\l_operations::detail\l::slice\&lt; index_sequence\l\&lt; indices ... \&gt;, types ... \&gt;" alt="" coords="5,5,172,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_225.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01sequence_00_01types_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01sequence_00_01types_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1detail_1_1slice_3_01sequence_00_01types_01_4"> <area shape="rect" id="node1" href="d5/d05/<API key>.html" title="bbb::tmp::variadic\l_operations::detail\l::slice\&lt; sequence, types \&gt;" alt="" coords="5,5,181,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_226.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="de/d73/<API key>.html" title="bbb::tmp::variadic\l_operations::insert\l\&lt; t, index, ts \&gt;" alt="" coords="5,5,136,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_227.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="db/dd0/<API key>.html" title="bbb::tmp::variadic\l_operations::map\&lt; function,\l types \&gt;" alt="" coords="5,5,192,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_228.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01initial_00_01types_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01initial_00_01types_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01initial_00_01types_01_4"> <area shape="rect" id="node1" href="df/d01/<API key>.html" title="bbb::tmp::variadic\l_operations::reduce\l\&lt; function, initial,\l types \&gt;" alt="" coords="5,5,145,71"/> </map> </td></tr> <tr><td><img src="inherit_graph_229.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/d8f/<API key>.html" title="bbb::tmp::variadic\l_operations::reduce\l\&lt; function, t \&gt;" alt="" coords="5,5,145,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_230.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01t_00_01s_00_01types_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01t_00_01s_00_01types_01_8_8_8_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01t_00_01s_00_01types_01_8_8_8_01_4"> <area shape="rect" id="node1" href="db/daa/structbbb_1_1tmp_1_1variadic__operations_1_1reduce_3_01function_00_01t_00_01s_00_01types_01_8_8_8_01_4.html" title="bbb::tmp::variadic\l_operations::reduce\l\&lt; function, t, s, types ... \&gt;" alt="" coords="5,5,176,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_231.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d5/db5/<API key>.html" title="bbb::tmp::variadic\l_operations::remove\&lt; t \&gt;" alt="" coords="5,5,175,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_232.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/d3d/<API key>.html" title="bbb::tmp::variadic\l_operations::remove\l\&lt; t, ts \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_233.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d8/d74/structbbb_1_1tmp_1_1variadic__operations_1_1remove_3_01t_00_01u_00_01ts_01_8_8_8_01_4.html" title="bbb::tmp::variadic\l_operations::remove\l\&lt; t, u, ts ... \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_234.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d2/d09/<API key>.html" title="bbb::tmp::variadic\l_operations::remove\l_all\&lt; t \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_235.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node1" href="d1/d2d/<API key>.html" title="bbb::tmp::variadic\l_operations::remove\l_all\&lt; t, ts \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_236.png" border="0" alt="" usemap="#bbb_1_1tmp_1_1variadic__operations_1_1remove__all_3_01t_00_01u_00_01ts_01_8_8_8_01_4"/> <map name="bbb_1_1tmp_1_1variadic__operations_1_1remove__all_3_01t_00_01u_00_01ts_01_8_8_8_01_4" id="bbb_1_1tmp_1_1variadic__operations_1_1remove__all_3_01t_00_01u_00_01ts_01_8_8_8_01_4"> <area shape="rect" id="node1" href="d5/d5f/structbbb_1_1tmp_1_1variadic__operations_1_1remove__all_3_01t_00_01u_00_01ts_01_8_8_8_01_4.html" title="bbb::tmp::variadic\l_operations::remove\l_all\&lt; t, u, ts ... \&gt;" alt="" coords="5,5,148,57"/> </map> </td></tr> <tr><td><img src="inherit_graph_237.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d6/ded/<API key>.html" title="bbb::type_conditional\l\&lt; cond, true_t, false_t \&gt;" alt="" coords="147,5,308,44"/> <area shape="rect" id="node3" href="d6/ded/<API key>.html" title="bbb::type_conditional\l\&lt; std::is_base_of\&lt; base\l_type, config \&gt;, config,\l <API key>\l\&lt; base_type, default_type,\l configs ... \&gt; \&gt;" alt="" coords="138,68,317,160"/> <area shape="rect" id="node4" href="dc/d3c/structbbb_1_1tmp_1_1inheritance_1_1search__inherited__type_3_01base__type_00_01default__type_00_3564138c5c5f0a6012993f153ea06e32.html" title="bbb::tmp::inheritance\l::<API key>\l\&lt; base_type, default_type,\l config, configs ... \&gt;" alt="" coords="365,81,543,147"/> </map> </td></tr> <tr><td><img src="inherit_graph_238.png" border="0" alt="" usemap="#<API key>"/> <map name="<API key>" id="<API key>"> <area shape="rect" id="node2" href="d5/d43/<API key>.html" title="bbb::type_enable_if\l\&lt; cond, type \&gt;" alt="" coords="129,5,267,44"/> </map> </td></tr> <tr><td><img src="inherit_graph_239.png" border="0" alt="" usemap="#make__difference__t"/> <map name="make__difference__t" id="make__difference__t"> <area shape="rect" id="node1" href="d1/de5/<API key>.html" title="alias of get_type&lt;diference_sequence&lt;s, t&gt;&gt; " alt="" coords="5,5,136,31"/> </map> </td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by & <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.13 </small></address> </body> </html>
#!/usr/bin/env python import optparse import sys from kimpira.core import Runtime from kimpira.version import get_version def parse_args(): usage = "usage: %prog [options] <jobfile>" p = optparse.OptionParser(usage) p.add_option('-V', '--version', action='store_true', dest='show_version', default=False, help='show version number and exit') p.add_option('-t', '--task', dest='task_name', default=None, help='task name to run') return p.parse_args() def main(): options, args = parse_args() if options.show_version: print("Kimpira {0}".format(get_version())) sys.exit(0) if len(args) > 0: Runtime().run(args[0], options.task_name, *args[1:]) if __name__ == '__main__': main()
<?php namespace EBC\PublisherClient\PublisherList; class PublisherList { /** * @var string */ protected $id; /** * @var string */ protected $name; /** * @var string */ protected $description; /** * @var array */ protected $interests; /** * @var string */ protected $fromName; /** * @var string */ protected $fromEmail; /** * @var string */ protected $publicName; /** * @var string */ protected $customDomain; /** * @var string */ protected $headDomain; /** * @var string */ protected $trackingDomain; /** * @var string */ protected $replyToEmail; /** * @var string */ protected $defaultCountryName; /** * @var int */ protected $listTemplateId; /** * @var int */ protected $approvalRulesId; /** * @var string */ protected $approvalRulesName; /** * @var array */ protected $approvedCategories; /** * @var array */ protected $<API key>; /** * @var array */ protected $<API key>; /** * @var boolean */ protected $<API key>; /** * @var boolean */ protected $<API key>; /** * @return string */ public function getId() { return $this->id; } /** * @return string */ public function getName() { return $this->name; } /** * @return string */ public function getDescription() { return $this->description; } /** * @return array */ public function getInterests() { return $this->interests; } /** * @return string */ public function getFromName() { return $this->fromName; } /** * @return string */ public function getFromEmail() { return $this->fromEmail; } /** * @return string */ public function getPublicName() { return $this->publicName; } /** * @return string */ public function getCustomDomain() { return $this->customDomain; } /** * @return string */ public function getHeadDomain() { return $this->headDomain; } /** * @return string */ public function getTrackingDomain() { return $this->trackingDomain; } /** * @return string */ public function getReplyToEmail() { return $this->replyToEmail; } /** * @return string */ public function <API key>() { return $this->defaultCountryName; } /** * @return int */ public function getListTemplateId() { return $this->listTemplateId; } /** * @return int */ public function getApprovalRulesId() { return $this->approvalRulesId; } /** * @return string */ public function <API key>() { return $this->approvalRulesName; } /** * @return array */ public function <API key>() { return $this->approvedCategories; } /** * @return array */ public function <API key>() { return $this-><API key>; } /** * @return array */ public function <API key>() { return $this-><API key>; } /** * @return boolean */ public function <API key>() { return $this-><API key>; } /** * @return boolean */ public function <API key>() { return $this-><API key>; } }
<!DOCTYPE HTML PUBLIC "- <!--NewPage <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_34) on Wed Oct 23 13:33:50 EDT 2013 --> <TITLE> org.hibernate.ejb.packaging (Hibernate JavaDocs) </TITLE> <META NAME="date" CONTENT="2013-10-23"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../org/hibernate/ejb/packaging/package-summary.html" target="classFrame">org.hibernate.ejb.packaging</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Interfaces</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="JarVisitor.html" title="interface in org.hibernate.ejb.packaging" target="classFrame"><I>JarVisitor</I></A> <BR> <A HREF="Scanner.html" title="interface in org.hibernate.ejb.packaging" target="classFrame"><I>Scanner</I></A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="AbstractJarVisitor.html" title="class in org.hibernate.ejb.packaging" target="classFrame">AbstractJarVisitor</A> <BR> <A HREF="ClassFilter.html" title="class in org.hibernate.ejb.packaging" target="classFrame">ClassFilter</A> <BR> <A HREF="Entry.html" title="class in org.hibernate.ejb.packaging" target="classFrame">Entry</A> <BR> <A HREF="ExplodedJarVisitor.html" title="class in org.hibernate.ejb.packaging" target="classFrame">ExplodedJarVisitor</A> <BR> <A HREF="FileFilter.html" title="class in org.hibernate.ejb.packaging" target="classFrame">FileFilter</A> <BR> <A HREF="<API key>.html" title="class in org.hibernate.ejb.packaging" target="classFrame"><API key></A> <BR> <A HREF="Filter.html" title="class in org.hibernate.ejb.packaging" target="classFrame">Filter</A> <BR> <A HREF="<API key>.html" title="class in org.hibernate.ejb.packaging" target="classFrame"><API key></A> <BR> <A HREF="JarProtocolVisitor.html" title="class in org.hibernate.ejb.packaging" target="classFrame">JarProtocolVisitor</A> <BR> <A HREF="JarVisitorFactory.html" title="class in org.hibernate.ejb.packaging" target="classFrame">JarVisitorFactory</A> <BR> <A HREF="JavaElementFilter.html" title="class in org.hibernate.ejb.packaging" target="classFrame">JavaElementFilter</A> <BR> <A HREF="NamedInputStream.html" title="class in org.hibernate.ejb.packaging" target="classFrame">NamedInputStream</A> <BR> <A HREF="NativeScanner.html" title="class in org.hibernate.ejb.packaging" target="classFrame">NativeScanner</A> <BR> <A HREF="PackageFilter.html" title="class in org.hibernate.ejb.packaging" target="classFrame">PackageFilter</A> <BR> <A HREF="PersistenceMetadata.html" title="class in org.hibernate.ejb.packaging" target="classFrame">PersistenceMetadata</A> <BR> <A HREF="<API key>.html" title="class in org.hibernate.ejb.packaging" target="classFrame"><API key></A> <BR> <A HREF="<API key>.ErrorLogger.html" title="class in org.hibernate.ejb.packaging" target="classFrame"><API key>.ErrorLogger</A> <BR> <A HREF="XmlHelper.html" title="class in org.hibernate.ejb.packaging" target="classFrame">XmlHelper</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
module PartialRecordSel where -- Partial record selectors use 'error' in the output (which is undefined) -- Would be better to use 'panic' (or be able to skip them entirely). data R = R1 { a :: Bool } | R2 { b :: Bool }
class CreateLocations < ActiveRecord::Migration def change create_table :locations do |t| t.string :code, null: false t.string :name, null: false end end end
<?php namespace Bun\Core\Config\Test\Container; use Bun\Core\Container\Container; use Bun\Core\Tests\AbstractTest; use Bun\Core\Tests\TestDependency1; use Bun\Core\Tests\TestDependency2; use Bun\Core\Tests\TestService; /** * Class ContainerTest * * @package Bun\Core\Config\Test\Container */ class ContainerTest extends AbstractTest { public function testGet() { $config = $this->getConfig($this->getApplication()); $container = Container::getInstance($config); $testService = new TestService(); $testService->setTestDependency1(new TestDependency1()); $testService->setTestDependency2(new TestDependency2()); $this->assertEquals( $testService, $container->get('bun.test_service'), 'Service classes are not equals' ); $this->assertEquals( $testService->dependency1, $container->get('bun.test_service')->dependency1, 'test1 dependency not equals' ); $this->assertEquals( $testService->dependency2, $container->get('bun.test_service')->dependency2, 'test2 dependency not equals' ); } }
#coding = utf-8 import sys from File import File from Execute import Execute def test(): isKeep = True dstFileName = None argsLen = len(sys.argv) if argsLen < 2: sys.exit() if argsLen >= 3: if sys.argv[2].startswith('-nk'): isKeep = False if argsLen > 3: dstFileName = sys.argv[3] srcFile = File(sys.argv[1], isKeep, dstFileName) srcFile.parse() exe = Execute(srcFile.dstFileName) exe.run() if __name__ == '__main__': test()
layout: single title: "" date: 2018-09-12 21:30:00 +0800 categories: [Leetcode] tags: [Array, Simulation] permalink: /problems/<API key>/ ## 985. (Medium) {% raw %} <p>&nbsp;<code>A</code>&nbsp;&nbsp;<code>queries</code></p> <p>&nbsp;<code>i</code>&nbsp;&nbsp;<code>val =&nbsp;queries[i][0], index&nbsp;= queries[i][1]</code>&nbsp;<code>val</code>&nbsp;&nbsp;<code>A[index]</code>&nbsp;&nbsp;<code>i</code>&nbsp; <code>A</code> </p> <p><em>&nbsp;<code>index = queries[i][1]</code>&nbsp; 0 &nbsp;<code>A</code></em></p> <p>&nbsp;<code>answer</code>&nbsp;<code>answer[i]</code>&nbsp;&nbsp;<code>i</code>&nbsp;</p> <p>&nbsp;</p> <p><strong></strong></p> <pre><strong></strong>A = [1,2,3,4], queries = [[1,0],[-3,1],[-4,0],[2,3]] <strong></strong>[8,6,2,4] <strong></strong> [1,2,3,4] 1 A[0] [2,2,3,4] 2 + 2 + 4 = 8 -3 A[1] [2,-1,3,4] 2 + 4 = 6 -4 A[0] [-2,-1,3,4] -2 + 4 = 2 2 A[3] [-2,-1,3,6] -2 + 6 = 4 </pre> <p>&nbsp;</p> <p><strong></strong></p> <ol> <li><code>1 &lt;= A.length &lt;= 10000</code></li> <li><code>-10000 &lt;= A[i] &lt;= 10000</code></li> <li><code>1 &lt;= queries.length &lt;= 10000</code></li> <li><code>-10000 &lt;= queries[i][0] &lt;= 10000</code></li> <li><code>0 &lt;= queries[i][1] &lt; A.length</code></li> </ol> {% endraw %} [[](https://github.com/awesee/leetcode/tree/master/tag/array/README.md)] [[](https://github.com/awesee/leetcode/tree/master/tag/simulation/README.md)]
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>lists</title> </head> <body> <table> <tr id = "container"> </tr> </table> <iframe src="/vanguard.html"></iframe> </body> <style> iframe{ position: fixed; right: 0%; top:0%; width:70%; height:98%; } .entry-field, .entry-number{ text-align: center; } .list-entry{ border: 1px solid #444; border-radius: 12px; } .robot_list{ } .list_cell{ } </style > <script type="text/javascript" src="/lib/jquery.min.js"></script> <script type="text/javascript" src="/lib/PapaParse/papaparse.js"></script> <script> //WARN does not work with new sheet var lists = {}; var datas = {}; //var headers = {landfill:true, numtotes:true, maxtotes:true, maxcans:true, reliability:true}; function init(){ fetchData("HEAD"); } function parseData(number){ var data = datas[number]; var matchData = data.slice(10); console.log(data); console.log(number); var element = document.createElement("tr"); element.className="list-entry"; element.id = number; element.innerHTML = '<td class="entry-index"></td>' + '<th class="entry-number">number</th>' + '<td id="landfill" class="entry-field">LF</td>' + '<td id="numtotes" class="entry-field">NT</td>' + '<td id="maxtotes" class="entry-field">MT</td>' + '<td id="maxcans" class="entry-field">MC</td>' + '<td id="reliability" class="entry-field">RL</td>' + '<td id="votes" class="entry-field">VO</td>'; element.id = number; //now to set the fields element.querySelector(".entry-number").innerHTML = number; element.querySelector("#landfill.entry-field").innerHTML = average(matchData, 4).toPrecision(3); element.querySelector("#numtotes.entry-field").innerHTML = average(matchData, 9).toPrecision(3); element.querySelector("#maxtotes.entry-field").innerHTML = average(matchData, 8).toPrecision(3); element.querySelector("#maxcans.entry-field").innerHTML = average(matchData, 7).toPrecision(3); element.querySelector("#reliability.entry-field").innerHTML = reliablityAnalysis(matchData).toPrecision(3); element.querySelector("#votes.entry-field").innerHTML = (parseInt(data[6][0])/parseInt(data[6][1])).toPrecision(3); return element; } function reliablityAnalysis(data){ //TODO these shouldnt start at 0 var last_numtotes = 0; var last_maxtote = 0; var last_maxcan = 0; var delta_numtotes = 0; var delta_maxtote = 0; var delta_maxcan = 0; for (i = 0; i < data.length; i++) { numtotes = parseInt(data[i][9]); maxtote = parseInt(data[i][8]); maxcan = parseInt(data[i][7]); if(!isNaN(numtotes)){ delta_numtotes += Math.abs(numtotes - last_numtotes); last_numtotes = numtotes; } if(!isNaN(maxtote)){ delta_maxtote += Math.abs(maxtote - last_maxtote); last_maxtote = maxtote; } if(!isNaN(maxcan)){ delta_maxcan += Math.abs(maxcan - last_maxcan); last_maxcan = maxcan; } } var delta = delta_maxtote + delta_maxcan + delta_numtotes; return delta; } function average(data, col){ sum = 0; num = 0; for (i = 0; i < data.length; i++) { d = parseInt(data[i][col]); if(!isNaN(d)){ sum += d; num += 1; } } return sum / num; } function fetchData(list_id, element){ //first get robot list //then fetch robot data files and call parse data for each //list data url = "/?type=list&id="+list_id; $.get(url, function(csv, status) { var data = Papa.parse(csv).data; //console.log(csv); //console.log(data); lists[list_id] = data; var list_element = document.createElement("table"); list_element.className = "robot_list"; list_element.id = list_id; var table_element = document.createElement("td"); table_element.appendChild(list_element); table_element.className = "list_cell"; document.body.querySelector("#container").appendChild(table_element); var headrow = document.createElement("tr"); var head = document.createElement("th"); head.innerHTML = list_id; head.colSpan = 100; headrow.appendChild(head); list_element.appendChild(headrow); list_element.appendChild(list_headers()); for(index in data){ var entry = data[index]; var number = entry[0]; //console.log(index); //console.log(entry); //console.log(number); url = "/?type=data&number="+number; $.get(url, function(robotData_CSV, status) { //console.log(number); for some reason number is undefined //console.log(list_element); var stuff = Papa.parse(robotData_CSV).data; var number = stuff[2][0]; datas[number] = stuff; var element = parseData(number); list_element.appendChild(parseData(number)); }); } }).fail(function() { alert(); }); function list_headers(){ var element = document.createElement("tr"); element.className="list-entry"; element.innerHTML = '<th class="entry-index"></th>' + '<th class="entry-number"> '<th id="landfill" class="entry-field">LF</th>' + '<th id="numtotes" class="entry-field">NT</th>' + '<th id="maxtotes" class="entry-field">MT</th>' + '<th id="maxcans" class="entry-field">MC</th>' + '<th id="reliability" class="entry-field">RL</th>' + '<th id="votes" class="entry-field">VO</th>'; return element; } } init(); </script> </html>
<html><body> <h4>Windows 10 x64 (18363.592)</h4><br> <h2><API key></h2> <font face="arial"> +0x000 Flags : <a href="./<API key>.html"><API key></a><br> +0x000 FileOffset : Uint8B<br> +0x000 VirtualAddress : Ptr64 Void<br> +0x000 PointerProtoPte : Ptr64 Void<br> </font></body></html>
Public Class TimerClass Dim _TargetTimeString As String Public Enum TimePeriod Daily Hourly End Enum Public ReadOnly Property GetInterval() As Integer Get Return DateDiff(DateInterval.Second, Now, get_Next_ImportDate) * 1000 End Get End Property Public ReadOnly Property GetDate() As Date Get Return get_Next_ImportDate() End Get End Property Public Sub New(ByVal TargetTime As String) _TargetTimeString = TargetTime End Sub Private Function get_Next_ImportDate() As Date Dim tmpDateStr As String = Now.ToString("yyyy-MM-dd") Dim currHour, targetHour As Integer Dim currMinute, targetMinute As Integer Dim targetDate As Date = Nothing targetHour = CDate(tmpDateStr & " " & _TargetTimeString).Hour targetMinute = CDate(tmpDateStr & " " & _TargetTimeString).Minute currHour = Now.Hour currMinute = Now.Minute If currHour >= targetHour AndAlso currMinute >= targetMinute Then targetDate = CDate(DateAdd(DateInterval.Day, 1, Now).ToString("yyyy-MM-dd") & " " & _TargetTimeString) Else targetDate = CDate(tmpDateStr & " " & _TargetTimeString) End If Return targetDate End Function End Class
<nav id="breadcrumb"> <ul class="list-inline"> <li class="item"> <i ng-class="{ 'icon-sitemap': ! isSearching(), 'icon-search': isSearching() }"></i> <a ui-sref="app.projects({ path: 'all' })" title="{{ 'ACCESS_TO' | translate: { item: item.name } }}" ng-if="! isEmpty() && ! isSearching()"> {{ 'PROJECTS_TITLE' | translate }} </a> <span ng-if="isEmpty() && ! isSearching()">{{ 'PROJECTS_TITLE' | translate }}</span> <span ng-if="isSearching();">{{ 'RESEARCH_TITLE' | translate }} : {{ 'ITEMS_FOUND' | translate: { items: data.research.results_nb } }}</span> </li> <li class="item" ng-repeat="item in data.breadcrumb" ng-if="! isSearching();"> <i class=" icon-right-open"></i> <a ng-click="open(item);" title="{{ 'ACCESS_TO' | translate: { item: item.name } }}" ng-if="! $last"> {{ item.name }} </a> <span ng-if="$last">{{ item.name }}</span> </li> </ul> </nav>
#ifndef ION_ALLOCATORS_H #define ION_ALLOCATORS_H #include "support/cleanse.h" #include <map> #include <string> #include <string.h> #include <boost/thread/mutex.hpp> #include <boost/thread/once.hpp> /** * Thread-safe class to keep track of locked (ie, non-swappable) memory pages. * * Memory locks do not stack, that is, pages which have been locked several times by calls to mlock() * will be unlocked by a single call to munlock(). This can result in keying material ending up in swap when * those functions are used naively. This class simulates stacking memory locks by keeping a counter per page. * * @note By using a map from each page base address to lock count, this class is optimized for * small objects that span up to a few pages, mostly smaller than a page. To support large allocations, * something like an interval tree would be the preferred data structure. */ template <class Locker> class <API key> { public: <API key>(size_t page_size) : page_size(page_size) { // Determine bitmask for extracting page from address assert(!(page_size & (page_size - 1))); // size must be power of two page_mask = ~(page_size - 1); } ~<API key>() { assert(this->GetLockedPageCount() == 0); } // For all pages in affected range, increase lock count void LockRange(void* p, size_t size) { boost::mutex::scoped_lock lock(mutex); if(!size) return; const size_t base_addr = reinterpret_cast<size_t>(p); const size_t start_page = base_addr & page_mask; const size_t end_page = (base_addr + size - 1) & page_mask; for (size_t page = start_page; page <= end_page; page += page_size) { Histogram::iterator it = histogram.find(page); if (it == histogram.end()) // Newly locked page { locker.Lock(reinterpret_cast<void*>(page), page_size); histogram.insert(std::make_pair(page, 1)); } else // Page was already locked; increase counter { it->second += 1; } } } // For all pages in affected range, decrease lock count void UnlockRange(void* p, size_t size) { boost::mutex::scoped_lock lock(mutex); if(!size) return; const size_t base_addr = reinterpret_cast<size_t>(p); const size_t start_page = base_addr & page_mask; const size_t end_page = (base_addr + size - 1) & page_mask; for (size_t page = start_page; page <= end_page; page += page_size) { Histogram::iterator it = histogram.find(page); assert(it != histogram.end()); // Cannot unlock an area that was not locked // Decrease counter for page, when it is zero, the page will be unlocked it->second -= 1; if (it->second == 0) // Nothing on the page anymore that keeps it locked { // Unlock page and remove the count from histogram locker.Unlock(reinterpret_cast<void*>(page), page_size); histogram.erase(it); } } } // Get number of locked pages for diagnostics int GetLockedPageCount() { boost::mutex::scoped_lock lock(mutex); return histogram.size(); } private: Locker locker; boost::mutex mutex; size_t page_size, page_mask; // map of page base address to lock count typedef std::map<size_t, int> Histogram; Histogram histogram; }; /** * OS-dependent memory page locking/unlocking. * Defined as policy class to make stubbing for test possible. */ class MemoryPageLocker { public: /** Lock memory pages. * addr and len must be a multiple of the system page size */ bool Lock(const void* addr, size_t len); /** Unlock memory pages. * addr and len must be a multiple of the system page size */ bool Unlock(const void* addr, size_t len); }; class LockedPageManager : public <API key><MemoryPageLocker> { public: static LockedPageManager& Instance() { boost::call_once(LockedPageManager::CreateInstance, LockedPageManager::init_flag); return *LockedPageManager::_instance; } private: LockedPageManager(); static void CreateInstance() { // Using a local static instance guarantees that the object is initialized // when it's first needed and also deinitialized after all objects that use // it are done with it. I can think of one unlikely scenario where we may // have a static deinitialization order/problem, but the check in // <API key>'s destructor helps us detect if that ever happens. static LockedPageManager instance; LockedPageManager::_instance = &instance; } static LockedPageManager* _instance; static boost::once_flag init_flag; }; // Functions for directly locking/unlocking memory objects. // Intended for non-dynamically allocated structures. template <typename T> void LockObject(const T& t) { LockedPageManager::Instance().LockRange((void*)(&t), sizeof(T)); } template <typename T> void UnlockObject(const T& t) { memory_cleanse((void*)(&t), sizeof(T)); LockedPageManager::Instance().UnlockRange((void*)(&t), sizeof(T)); } // Allocator that locks its contents from being paged // out of memory and clears its contents before deletion. template <typename T> struct secure_allocator : public std::allocator<T> { // MSVC8 default copy constructor is broken typedef std::allocator<T> base; typedef typename base::size_type size_type; typedef typename base::difference_type difference_type; typedef typename base::pointer pointer; typedef typename base::const_pointer const_pointer; typedef typename base::reference reference; typedef typename base::const_reference const_reference; typedef typename base::value_type value_type; secure_allocator() throw() {} secure_allocator(const secure_allocator& a) throw() : base(a) {} template <typename U> secure_allocator(const secure_allocator<U>& a) throw() : base(a) { } ~secure_allocator() throw() {} template <typename _Other> struct rebind { typedef secure_allocator<_Other> other; }; T* allocate(std::size_t n, const void* hint = 0) { T* p; p = std::allocator<T>::allocate(n, hint); if (p != NULL) LockedPageManager::Instance().LockRange(p, sizeof(T) * n); return p; } void deallocate(T* p, std::size_t n) { if (p != NULL) { memory_cleanse(p, sizeof(T) * n); LockedPageManager::Instance().UnlockRange(p, sizeof(T) * n); } std::allocator<T>::deallocate(p, n); } }; // Allocator that clears its contents before deletion. template <typename T> struct <API key> : public std::allocator<T> { // MSVC8 default copy constructor is broken typedef std::allocator<T> base; typedef typename base::size_type size_type; typedef typename base::difference_type difference_type; typedef typename base::pointer pointer; typedef typename base::const_pointer const_pointer; typedef typename base::reference reference; typedef typename base::const_reference const_reference; typedef typename base::value_type value_type; <API key>() throw() {} <API key>(const <API key>& a) throw() : base(a) {} template <typename U> <API key>(const <API key><U>& a) throw() : base(a) { } ~<API key>() throw() {} template <typename _Other> struct rebind { typedef <API key><_Other> other; }; void deallocate(T* p, std::size_t n) { if (p != NULL) memory_cleanse(p, sizeof(T) * n); std::allocator<T>::deallocate(p, n); } }; // This is exactly like std::string, but with a custom allocator. typedef std::basic_string<char, std::char_traits<char>, secure_allocator<char> > SecureString; #endif // ION_ALLOCATORS_H
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Media; using System.Windows.Media.Animation; namespace ModernWPF { <summary> Quick utility for doing simple ad-hoc animations. </summary> public static class Animation { static Animation() { TypicalDuration = TimeSpan.FromMilliseconds((double)AnimationSpeed.Normal); TypicalEasing = new QuarticEase { EasingMode = EasingMode.EaseOut }; TypicalEasing.Freeze(); } <summary> Gets a flag indicating whether animation should be used. This does not stop controls from using animations in this class. </summary> <value> <c>true</c> if the app should animate; otherwise, <c>false</c>. </value> public static bool ShouldAnimate { get { return !SystemParameters.IsRemoteSession || (RenderCapability.Tier >> 16) > 0; } } <summary> Gets the a typical animation duration. </summary> public static TimeSpan TypicalDuration { get; private set; } <summary> Gets the typical easing function. </summary> <value> The typical easing. </value> public static QuarticEase TypicalEasing { get; private set; } <summary> Gets the typical slide offset value. Default is 15. </summary> <value> The typical slide offset. </value> public static double TypicalSlideOffset { get { return 15; } } <summary> Slides the element in with translate transform. </summary> <param name="element">The element.</param> <param name="direction">The direction.</param> <param name="duration">The duration.</param> public static void SlideIn(UIElement element, SlideFromDirection direction, TimeSpan duration) { SlideIn(element, direction, duration, TypicalSlideOffset, TypicalEasing); } <summary> Slides the element in with translate transform. </summary> <param name="element">The element.</param> <param name="direction">The direction.</param> <param name="duration">The duration.</param> <param name="startOffset">The start offset.</param> public static void SlideIn(UIElement element, SlideFromDirection direction, TimeSpan duration, double startOffset) { SlideIn(element, direction, duration, startOffset, TypicalEasing); } <summary> Slides the element in with translate transform </summary> <param name="element">The element.</param> <param name="direction">The direction.</param> <param name="duration">The duration.</param> <param name="startOffset">The start offset.</param> <param name="easing">The easing.</param> <param name="completedCallback">The completed callback.</param> public static void SlideIn(UIElement element, SlideFromDirection direction, TimeSpan duration, double startOffset, IEasingFunction easing, Action completedCallback = null) { if (element == null) { return; } var da = new DoubleAnimation(); da.Duration = duration; da.EasingFunction = easing; da.To = 0; if (completedCallback != null) { da.Completed += (s, e) => { completedCallback(); }; } TranslateTransform transform = <API key>(element); switch (direction) { case SlideFromDirection.Top: da.From = -startOffset; transform.BeginAnimation(TranslateTransform.YProperty, da); break; case SlideFromDirection.Left: da.From = -startOffset; transform.BeginAnimation(TranslateTransform.XProperty, da); break; case SlideFromDirection.Right: da.From = startOffset; transform.BeginAnimation(TranslateTransform.XProperty, da); break; case SlideFromDirection.Bottom: da.From = startOffset; transform.BeginAnimation(TranslateTransform.YProperty, da); break; } } private static TranslateTransform <API key>(UIElement element) { TranslateTransform transform = null; if (element.RenderTransform != null) { var grp = element.RenderTransform as TransformGroup; if (grp == null) { transform = element.RenderTransform as TranslateTransform; } else { var hit = grp.Children.FirstOrDefault(t => t is TranslateTransform); transform = (TranslateTransform)hit; } } if (transform == null) { transform = new TranslateTransform(); // probably shouldn't replace existing transform but anyway element.RenderTransform = transform; } return transform; } <summary> Animates the element's opacity from 0 to 1. </summary> <param name="element">The element.</param> <param name="duration">The duration.</param> <param name="completedCallback">The completed callback.</param> public static void FadeIn(UIElement element, TimeSpan duration, Action completedCallback = null) { if (element != null) { var da = new DoubleAnimation { From = 0, To = 1, Duration = duration }; if (completedCallback != null) { da.Completed += (s, e) => { completedCallback(); }; } element.BeginAnimation(UIElement.OpacityProperty, da, HandoffBehavior.SnapshotAndReplace); } } <summary> Animates the element's opacity to 1. </summary> <param name="element">The element.</param> <param name="duration">The duration.</param> <param name="completedCallback">The completed callback.</param> public static void FadeOut(UIElement element, TimeSpan duration, Action completedCallback = null) { if (element != null) { var da = new DoubleAnimation { To = 0, Duration = duration }; if (completedCallback != null) { da.Completed += (s, e) => { completedCallback(); }; } element.BeginAnimation(UIElement.OpacityProperty, da, HandoffBehavior.SnapshotAndReplace); } } } <summary> Named values for common animation duration in ms. </summary> public enum AnimationSpeed { <summary> No duration, 0. </summary> None = 0, <summary> Short duration, 100ms, </summary> Fast = 100, <summary> Normal duration, 250ms. </summary> Normal = 250, <summary> Long duration, 500ms. </summary> Slow = 500 } <summary> Indicates the slide direction. </summary> public enum SlideFromDirection { <summary> Slide from the left. </summary> Left, <summary> Slide from the top. </summary> Top, <summary> Slide from the right. </summary> Right, <summary> Slide from the bottom. </summary> Bottom } }
<?php namespace Oro\Bundle\AttachmentBundle\Provider; use Oro\Bundle\EntityConfigBundle\Config\ConfigInterface; /** * Provides an interface for classes that can be used to get attachment entity config. */ interface <API key> { /** * @param string $entityClass * @param string $fieldName * @return ConfigInterface|null */ public function getFieldConfig(string $entityClass, string $fieldName): ?ConfigInterface; /** * @param string $entityClass * @return ConfigInterface|null */ public function getEntityConfig(string $entityClass): ?ConfigInterface; }
<?php namespace Ndewez\WebHome\CommonBundle\Menu; use Ndewez\WebHome\CommonBundle\Model\MenuItem; use Ndewez\WebHome\CommonBundle\Model\MenuItemDivider; use Symfony\Bundle\FrameworkBundle\Routing\Router; /** * Class BuilderMenu. */ class BuilderMenu { /** @var Router */ private $router; /** * @param Router $router */ public function __construct(Router $router) { $this->router = $router; } /** * @param MenuItem[] $items * @param string $currentUri * * @return MenuItem[] */ public function build(array $items, $currentUri) { foreach ($items as $item) { if ($item->isDivider()) { continue; } $this->buildItem($item, $currentUri); } return $items; } /** * @param MenuItem $menuItem * @param string $currentUri */ private function buildItem(MenuItem $menuItem, $currentUri) { if ($menuItem instanceof MenuItemDivider) { return; } if ($menuItem->hasItem()) { foreach ($menuItem->getItems() as $item) { $this->buildItem($item, $currentUri); if ($item->isActive()) { $menuItem->setActive(true); } } return; } $uri = $menuItem->getRoute() ? $this->router->generate($menuItem->getRoute(), $menuItem->getParametersRoute()) : ''; $uriHome = $this->router->generate('app_home'); $active = false; if ($uri === $currentUri || ($uri != $uriHome && preg_match('#^'.$uri.'#', $currentUri))) { $active = true; } $menuItem ->setActive($active) ->setHref($uri); } }
import React from 'react' import {createDevTools} from 'redux-devtools' import LogMonitor from '<API key>' import DockMonitor from '<API key>' export default createDevTools( <DockMonitor toggleVisibilityKey="ctrl-h" changePositionKey="ctrl-w" > <LogMonitor /> </DockMonitor> )
#!/bin/sh # CYBERWATCH SAS - 2017 # Security fix for USN-2958-1 # Operating System: Ubuntu 14.04 LTS # Architecture: x86_64 # - poppler-utils:0.24.5-2ubuntu4.4 # - libpoppler-qt4-4:0.24.5-2ubuntu4.4 # - libpoppler44:0.24.5-2ubuntu4.4 # - libpoppler-glib8:0.24.5-2ubuntu4.4 # - libpoppler-cpp0:0.24.5-2ubuntu4.4 # - libpoppler-qt5-1:0.24.5-2ubuntu4.4 # Last versions recommanded by security team: # - poppler-utils:0.24.5-2ubuntu4.4 # - libpoppler-qt4-4:0.24.5-2ubuntu4.4 # - libpoppler44:0.24.5-2ubuntu4.4 # - libpoppler-glib8:0.24.5-2ubuntu4.4 # - libpoppler-cpp0:0.24.5-2ubuntu4.4 # - libpoppler-qt5-1:0.24.5-2ubuntu4.4 # CVE List: # - CVE-2013-4473 # - CVE-2013-4474 # - CVE-2015-8868 # More details: sudo apt-get install --only-upgrade poppler-utils=0.24.5-2ubuntu4.4 -y sudo apt-get install --only-upgrade libpoppler-qt4-4=0.24.5-2ubuntu4.4 -y sudo apt-get install --only-upgrade libpoppler44=0.24.5-2ubuntu4.4 -y sudo apt-get install --only-upgrade libpoppler-glib8=0.24.5-2ubuntu4.4 -y sudo apt-get install --only-upgrade libpoppler-cpp0=0.24.5-2ubuntu4.4 -y sudo apt-get install --only-upgrade libpoppler-qt5-1=0.24.5-2ubuntu4.4 -y
{{-- Delete Image --}} @can('delete', $image) <div style="display: flex; flex-direction: row-reverse;"> <button class="btn btn-danger deleteBtn" data-toggle="modal" data-target="#deleteConfirmModal" data-message="{{ __('images.show.delete_confirm') }}" data-action="{{ $delete_route }}"> {{ __('images.show.button.delete') }} </button> </div> @endcan @can('delete', $image) {{-- Delete confirmation modal --}} @include('partials.<API key>') @endcan
import Promise from 'bluebird' import { merge } from 'ramda' import runTest from '../../test/runTest' test('client.user.create', () => runTest({ connect: { api_key: 'foobar', }, subject: client => client.user.create({ email: 'foo@bar.com', password: 'ilovememes', invite_<API key>, name: 'Josefim', }), method: 'POST', url: '/users', body: { api_key: 'foobar', email: 'foo@bar.com', password: 'ilovememes', invite_<API key>, name: 'Josefim', }, }) ) test('client.user.redefinePassword', () => runTest({ connect: { api_key: 'foobar', }, subject: client => client.user.redefinePassword({ password: 'ilovememes', <API key>, }), method: 'PUT', url: '/users/redefine_password', body: { api_key: 'foobar', password: 'ilovememes', <API key>, }, }) ) test('client.user.resetPassword', () => runTest({ connect: { api_key: 'foobar', }, subject: client => client.user.resetPassword({ email: 'foo@bar.com', }), method: 'PUT', url: '/users/reset_password', body: {}, }) ) const findOptions = { connect: { api_key: 'abc123', }, method: 'GET', body: { api_key: 'abc123', }, } test('client.user.find', () => { const find = runTest(merge(findOptions, { subject: client => client.user.find({ id: 42 }), url: '/users/42', })) const findAll = runTest(merge(findOptions, { subject: client => client.user.find({ count: 10, page: 2 }), url: '/users', })) return Promise.props({ find, findAll, }) }) test('client.user.all', () => runTest(merge(findOptions, { subject: client => client.user.all({ count: 10, page: 2 }), url: '/users', })) ) test('client.user.destroy', () => runTest({ connect: { api_key: 'abc123', }, subject: client => client.user.destroy({ id: 1234, }), method: 'DELETE', url: '/users/1234', body: { api_key: 'abc123', }, }) ) test('client.user.update', () => runTest({ connect: { api_key: 'abc123', }, subject: client => client.user.update({ id: 42, permission: 'read_write' }), method: 'PUT', url: '/users/42', body: { api_key: 'abc123', permission: 'read_write', }, }) ) test('client.user.updatePassword', () => runTest({ connect: { api_key: 'abc123', }, subject: client => client.user.update({ id: 42, current_password: 'foo', new_password: 'bar' }), method: 'PUT', url: '/users/42', body: { api_key: 'abc123', current_password: 'foo', new_password: 'bar', }, }) ) test('client.transactions.current', () => runTest(merge(findOptions, { subject: client => client.user.current(), url: '/user', method: 'GET', })) )
window.c.root.Team = (function(m, c) { return { view: function() { return m('#static-team-app', [ m.component(c.TeamTotal), m.component(c.TeamMembers) ]); } }; }(window.m, window.c));
$stream = file_get_contents('AluminiumLAST.txt'); $avgp = "0.09"; $high = "0.10"; $low = "0.09"; echo "&L=".$stream."&N=Aluminium&"; $temp = file_get_contents("AluminiumTEMP.txt", "r"); if ($stream != $temp ) { $mhigh = ($avgp + $high)/2; $mlow = ($avgp + $low)/2; $llow = ($low - (($avgp - $low)/2)); $hhigh = ($high + (($high - $avgp)/2)); $diff = $stream - $temp; $diff = number_format($diff, 2, '.', ''); $avgp = number_format($avgp, 2, '.', ''); if ( $stream > $temp ) { if ( ($stream > $mhigh ) && ($stream < $high)) { echo "&sign=au" ; } if ( ($stream < $mlow ) && ($stream > $low)) { echo "&sign=ad" ; } if ( $stream < $llow ) { echo "&sign=as" ; } if ( $stream > $hhigh ) { echo "&sign=al" ; } if ( ($stream < $hhigh) && ($stream > $high)) { echo "&sign=auu" ; } if ( ($stream > $llow) && ($stream < $low)) { echo "&sign=add" ; } //else { echo "&sign=a" ; } $filedish = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $write = fputs($filedish, "Aluminium:".$stream. ":Moving up:".$diff.":".$high.":".$low.":".$avgp."\r\n"); fclose( $filedish );} if ( $stream < $temp ) { if ( ($stream >$mhigh) && ($stream < $high)) { echo "&sign=bu" ; } if ( ($stream < $mlow) && ($stream > $low)) { echo "&sign=bd" ; } if ( $stream < $llow ) { echo "&sign=bs" ; } if ( $stream > $hhigh ) { echo "&sign=bl" ; } if ( ($stream < $hhigh) && ($stream > $high)) { echo "&sign=buu" ; } if ( ($stream > $llow) && ($stream < $low)) { echo "&sign=bdd" ; } // else { echo "&sign=b" ; } $filedish = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $write = fputs($filedish, "Aluminium:".$stream. ":Moving down:".$diff.":".$high.":".$low.":".$avgp."\r\n"); fclose( $filedish );} $my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $filename= 'Aluminium.txt'; $file = fopen($filename, "a+" ); fwrite( $file, $stream.":".$time."\r\n" ); fclose( $file ); if (($stream > $mhigh ) && ($temp<= $mhigh )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $risk = ($stream - $low) * (200000/$stream); $risk = (int)$risk; $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:".$stream. ":Approaching:PHIGH:".$high.":Buy Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream < $mhigh ) && ($temp>= $mhigh )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $risk = ($high - $stream) * (200000/$stream); $risk = (int)$risk; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream.":Moving Down:PHIGH:".$high.":short Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream > $mlow ) && ($temp<= $mlow )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $risk = ($stream - $low) * (200000/$stream); $risk = (int)$risk; $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:".$stream. ":Moving Up:PLOW:".$low.":Buy Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream < $mlow ) && ($temp>= $mlow )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $risk = ($high - $stream) * (200000/$stream); $risk = (int)$risk; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream.":Approaching:PLOW:".$low.":short Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream > $high ) && ($temp<= $high )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $risk = ($stream - $low) * (200000/$stream); $risk = (int)$risk; $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:".$stream. ":Breaking:PHIGH:".$high.":Buy Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream > $hhigh ) && ($temp<= $hhigh )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $risk = ($stream - $low) * (200000/$stream); $risk = (int)$risk; $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:".$stream. ":Moving Beyond:PHIGH:".$high.":Buy Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream < $hhigh ) && ($temp>= $hhigh )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream. ":Coming near:PHIGH:".$high.":Buy Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream < $high ) && ($temp>= $high )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream. ":Retracing:PHIGH:".$high."\r\n"); fclose( $filedash ); } if (($stream < $llow ) && ($temp>= $llow )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $risk = ($high - $stream) * (200000/$stream); $risk = (int)$risk; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream.":Breaking Beyond:PLOW:".$low.":short Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream < $low ) && ($temp>= $low )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $risk = ($high - $stream) * (200000/$stream); $risk = (int)$risk; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream.":Breaking:PLOW:".$low.":short Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream > $llow ) && ($temp<= $llow )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream.":Coming near:PLOW:".$low.":short Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream > $low ) && ($temp<= $low )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:". $stream.":Retracing:PLOW:".$low."\r\n"); fclose( $filedash ); } if (($stream > $avgp ) && ($temp<= $avgp )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $risk = ($stream - $low) * (200000/$stream); $risk = (int)$risk; $avgp = number_format($avgp, 2, '.', ''); $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:".$stream. ":Sliding up:PAVG:".$avgp.":Buy Cost:".$risk."\r\n"); fclose( $filedash ); } if (($stream < $avgp ) && ($temp>= $avgp )) {$my_time = date('h:i:s',time()); $seconds2add = 19800; $new_time= strtotime($my_time); $new_time+=$seconds2add; $risk = ($high - $stream) * (200000/$stream); $risk = (int)$risk; $avgp = number_format($avgp, 2, '.', ''); $time = date('h:i:s',$new_time); $filedash = fopen("C:\wamp\www\charity\hu\bloomberg\indices\malert.txt", "a+"); $wrote = fputs($filedash, "Aluminium:".$stream. ":Sliding down:PAVG:".$avgp.":Short Cost:".$risk."\r\n"); fclose( $filedash ); } } $filedash = fopen("AluminiumTEMP.txt", "w"); $wrote = fputs($filedash, $stream); fclose( $filedash ); //echo "&chg=".$json_output['cp']."&"; ?> /*email to provide support at vancekingsaxbe@<API key>.com, businessaffairs@<API key>.com, For donations please write to fundraising@<API key>.com*/
<?php include_once("conexion.php"); // Rellenar la tabla para el reporte $quer0 = "DELETE FROM repbonoafiliacion WHERE 1"; $resul0 = mysql_query($quer0,$link); $query = "SELECT * FROM patrocinio order by patroc_codigo,tit_codigo"; $result = mysql_query($query,$link); $txt = ""; while($row = mysql_fetch_array($result)) { $patroc_codigo = $row["patroc_codigo"]; $tit_codigo = $row["tit_codigo"]; $fecha_afiliacion = $row["fecha_afiliacion"]; // del afiliado no del patrocinador $fecha_fin_bono = $row["fecha_fin_bono"]; $quer2 = "SELECT * from organizacion where organizacion.organizacion='".$tit_codigo."' and nivel>='0' AND nivel<'3' order by nivel,afiliado"; $resul2 = mysql_query($quer2,$link); $m = 0; $d2 = false; $ha1 = true; $st = 0.00; while($ro2 = mysql_fetch_array($resul2)) { $nivel = $ro2["nivel"]+1; $afiliado = $ro2["afiliado"]; $quer3 = "SELECT * from afiliados where tit_codigo='".$afiliado."'"; $resul3 = mysql_query($quer3,$link); if($ro3 = mysql_fetch_array($resul3)) { $tipo_afiliado = $ro3["tipo_afiliado"]; $quer4 = " SELECT * from transacciones where afiliado='".$afiliado."' and tipo='01' and fecha>='".$fecha_afiliacion."' and fecha<='".$fecha_fin_bono."' and status_comision='Pendiente'"; $resul4 = mysql_query($quer4,$link); if($ro4 = mysql_fetch_array($resul4)) { $monto = $ro4["monto"]; $fectr = $ro4["fecha"]; $quer5 = "SELECT * from bono_afiliacion where bono_afiliacion.nivel='".trim($nivel)."'"; $resul5 = mysql_query($quer5,$link); $ro5 = mysql_fetch_array($resul5); $porcentaje = 0.00; switch ($tipo_afiliado) { case 'Premium': $porcentaje = $ro5["premium"]; break; case 'VIP': $porcentaje = $ro5["vip"]; break; case 'Oro': $porcentaje = $ro5["oro"]; break; } $comision = $monto*($porcentaje/100); if ($monto<>0.00) { $quer6 = "INSERT INTO repbonoafiliacion VALUES ('".$patroc_codigo."','".$tit_codigo."','".$fecha_afiliacion."','".$fecha_fin_bono."',".$nivel.",'".$afiliado."','".$tipo_afiliado."','".$fectr."',".$monto.",".$porcentaje.",".$comision.",'','');"; $resul6 = mysql_query($quer6,$link); } } } } } // Hasta aqui rellena la tabla para el reporte // | modification, are permitted provided that the following conditions | // | are met: | // | documentation and/or other materials provided with the distribution.| // | o The names of the authors may not be used to endorse or promote | // | products derived from this software without specific prior written | // | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | // | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | // | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | // | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | // | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | // | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | // | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | // | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | // | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | // | Harald Radi <harald.radi@nme.at> | // $Id: example.php 181173 2005-03-02 02:16:51Z richard $ //error_reporting(E_ALL | E_STRICT); require_once('html_tree_menu/TreeMenu.php'); $icon = 'folder.gif'; $expandedIcon = 'folder-expanded.gif'; $menu = new HTML_TreeMenu(); $query = "SELECT * FROM repbonoafiliacion order by patroc_codigo,tit_codigo,nivel,afiliado"; if ($result = mysql_query($query,$link)) { $patroc_codigo = ''; $tit_codigo = ''; $first = true; $second = true; $nodos = array(); while($row = mysql_fetch_array($result)) { if ($first) { $patroc_codigo = $row["patroc_codigo"]; $tit_codigo = $row["tit_codigo"]; $nodos[$patroc_codigo] = &$menu->addItem(new HTML_TreeNode(array('text' => 'patroc_codigo1 '.$patroc_codigo.'*'.$tit_codigo, 'link' => "test.php", 'icon' => $icon, 'expandedIcon' => $expandedIcon))); $nodos[$tit_codigo] = &$nodos[$patroc_codigo]->addItem(new HTML_TreeNode(array('text' => 'tit_codigo1 '.$tit_codigo.'*'.$patroc_codigo, 'link' => "test.php", 'icon' => $icon, 'expandedIcon' => $expandedIcon))); $first = false; } if ($patroc_codigo<>$row["patroc_codigo"]) { $patroc_codigo = $row["patroc_codigo"]; $tit_codigo = $row["tit_codigo"]; $nodos[$patroc_codigo] = &$menu->addItem(new HTML_TreeNode(array('text' => 'patroc_codigo2 '.$patroc_codigo.'*'.$tit_codigo, 'link' => "test.php", 'icon' => $icon, 'expandedIcon' => $expandedIcon))); $nodos[$tit_codigo] = &$nodos[$patroc_codigo]->addItem(new HTML_TreeNode(array('text' => 'tit_codigo2 '.$tit_codigo.'*'.$patroc_codigo, 'link' => "test.php", 'icon' => $icon, 'expandedIcon' => $expandedIcon))); } if ($tit_codigo<>$row["tit_codigo"]) { $tit_codigo = $row["tit_codigo"]; $nodos[$tit_codigo] = &$nodos[$patroc_codigo]->addItem(new HTML_TreeNode(array('text' => 'tit_codigo3 '.$tit_codigo.'*'.$patroc_codigo, 'link' => "test.php", 'icon' => $icon, 'expandedIcon' => $expandedIcon))); } $fecha_afiliacion = $row["fecha_afiliacion"]; $fecha_fin_bono = $row["fecha_fin_bono"]; $nivel = $row["nivel"]; $afiliado = $row["afiliado"]; $tipo_afiliado = $row["tipo_afiliado"]; $fectr = $row["fectr"]; $monto = $row["monto"]; $porcentaje = $row["porcentaje"]; $comision = $row["comision"]; $nodos[$tit_codigo]->addItem(new HTML_TreeNode(array('text' => 'Nivel: '.$nivel." Afiliado: ".$afiliado.' Tipo: '.$tipo_afiliado.' Fecha transacción: '.$fectr. " Monto: ".trim(number_format($monto,2,',','.'))." - ".number_format($porcentaje,0,',','.')."% - Comisión: ".trim(number_format($comision,2,',','.')).' - '.$tit_codigo.' - '.$patroc_codigo, 'link' => "test.php", 'icon' => $icon, 'expandedIcon' => $expandedIcon))); } } // Create the presentation class $treeMenu = &new HTML_TreeMenu_DHTML($menu, array('images' => 'html_tree_menu/images', 'defaultClass' => 'treeMenuDefault')); $listBox = &new <API key>($menu, array('linkTarget' => '_self')); //$treeMenuStatic = &new <API key>($menu, array('images' => '../images', 'defaultClass' => 'treeMenuDefault', 'noTopLevelImages' => true)); ?> <html> <head> <style type="text/css"> body { font-family: Georgia; font-size: 11pt; } .treeMenuDefault { font-style: italic; } .treeMenuBold { font-style: italic; font-weight: bold; } </style> <script src="html_tree_menu/TreeMenu.js" language="JavaScript" type="text/javascript"></script> </head> <body> <?$treeMenu->printMenu()?><br /><br /> <?$listBox->printMenu()?> </body> </html>
task default -depends Test task Test -depends Compile, Clean -PreAction {"Pre-Test"} -Action { "Test" } -PostAction {"Post-Test"} task Compile -depends Clean { "Compile" } task Clean { "Clean" }
package nl.q42.jue; import java.util.ArrayList; import java.util.Date; /** * Collection of updates to a schedule. */ public class ScheduleUpdate { private ArrayList<Command> commands = new ArrayList<Command>(); String toJson() { StringBuilder json = new StringBuilder("{"); for (int i = 0; i < commands.size(); i++) { json.append(commands.get(i).toJson()); if (i < commands.size() - 1) json.append(","); } json.append("}"); return json.toString(); } /** * Set the name of the schedule. * @param name new name * @return this object for chaining calls */ public ScheduleUpdate setName(String name) { if (Util.stringSize(name) > 32) { throw new <API key>("Schedule name can be at most 32 characters long"); } commands.add(new Command("name", name)); return this; } /** * Set the description of the schedule. * @param description new description * @return this object for chaining calls */ public ScheduleUpdate setDescription(String description) { if (Util.stringSize(description) > 64) { throw new <API key>("Schedule description can be at most 64 characters long"); } commands.add(new Command("description", description)); return this; } /** * Set the time of the schedule. * @param time new time * @return this object for chaining calls */ public ScheduleUpdate setTime(Date time) { commands.add(new Command("time", time)); return this; } }
<?php namespace FurryBear\Http\Adapter; use FurryBear\Common\Exception\NoResultException, FurryBear\Proxy\Curl as CurlProxy, FurryBear\Http\<API key>; class Curl implements <API key> { /** * The contents of the <code>"User-Agent: "</code> header to be used in a * HTTP request. * * @var string */ protected $userAgent = 'FurryBear via cURL'; /** * An array of HTTP header fields to set, in the format: * <code> * array('Content-type: text/plain', 'Content-length: 100') * </code> * * @var array */ protected $headers = array(); /** * A reference to a cURL proxy object. * * @var \FurryBear\Proxy\Curl */ protected $proxy = null; /** * Construct with an optional cURL proxy object. * * @param \FurryBear\Proxy\Curl $proxy A Curl proxy object. */ public function __construct($proxy = null) { if (!is_null($proxy)) { $this->proxy = $proxy; } } /** * {@inheritdoc} * * @param string $url A URL of the resource. * * @return string */ public function getContent($url) { if (is_null($this->proxy)) { $this->proxy = new CurlProxy($url); } $this->proxy->setOption(<API key>, true); $this->proxy->setOption(CURLOPT_USERAGENT, $this->userAgent); if (!empty($this->headers)) { $this->proxy->setOption(CURLOPT_HTTPHEADER, $this->headers); } if (parse_url($url, PHP_URL_SCHEME) === 'https') { $this->proxy->setOption(<API key>, 2); $this->proxy->setOption(<API key>, 1); $this->proxy->setOption(CURLOPT_CAINFO, __DIR__ . '/cacert.pem'); } $content = $this->proxy->execute(); if ($content === false) { throw new NoResultException($this->proxy->getError()); } $this->proxy->close(); $this->proxy = null; return $content; } /** * {@inheritdoc} * * @param array $headers An array of HTTP headers. * * @return void */ public function setHeaders(array $headers) { $this->headers = $headers; } /** * {@inheritdoc} * * @param string $userAgent A custom user agent. * * @return void */ public function setUserAgent($userAgent) { $this->userAgent = $userAgent; } /** * Clean up the cURL proxy object */ public function __destruct() { if (!is_null($this->proxy)) { $this->proxy->close(); } $this->proxy = null; } }
package se.chriskevin.mysterymaze.environment; import se.chriskevin.mysterymaze.animation.AnimationState; import se.chriskevin.mysterymaze.animation.Direction; import se.chriskevin.mysterymaze.behavior.Actor; import se.chriskevin.mysterymaze.behavior.Behavior; import javax.imageio.ImageIO; import java.awt.*; import java.awt.image.BufferedImage; import java.io.File; import java.util.HashMap; import java.util.Map; import java.util.Optional; public class GameSprite implements GameObject, Actor { protected Behavior behavior; protected boolean colliding; protected Point location; protected Dimension size; protected int scale; protected boolean visible; protected boolean blocking; protected AnimationState animationState; protected Direction direction; protected Image image; protected Map<String, Image> images; protected Point dLocation; protected int speed; public GameSprite(Point location) { this.location = location; this.dLocation = new Point(0, 0); this.size = new Dimension(0, 0); this.scale = 1; animationState = AnimationState.STOPPED; blocking = false; colliding = false; direction = Direction.DOWN; speed = 4; visible = true; } @Override public void act() { if (behavior != null) { behavior.execute(this); }; } @Override public void act(Behavior behavior) { if (behavior != null) { behavior.execute(this); } } public Rectangle getBounds() { return new Rectangle(location, size); } public Direction getDirection() { return this.direction; } public Point getDLocation() { return this.dLocation; } public Image getImage() { final String key = animationState + "_" + direction; return (images != null && images.size() > 0) ? images.get(key) : image; } public Point getLocation() { return this.location; } public Dimension getSize() { return this.size; } public int getSpeed() { return this.speed * scale; } public boolean isBlocking() { return blocking; } public void isBlocking(boolean blocking) { this.blocking = blocking; } public boolean isColliding() { return colliding; } public void isColliding(boolean colliding) { this.colliding = colliding; } public boolean isVisible() { return visible; } public void isVisible(boolean visible) { this.visible = visible; } public Image resize(int factor, BufferedImage originalImage) { return originalImage.getScaledInstance(factor * originalImage.getWidth(null), factor * originalImage.getHeight(null), BufferedImage.SCALE_SMOOTH); } public void setAnimationState(AnimationState animationState) { this.animationState = animationState; } public void setBehavior(Behavior behavior) { this.behavior = behavior; } public void setDirection(Direction direction) { this.direction = direction; } public void setImage(String imageFilename) { image = loadImage(imageFilename); getImageDimensions(); } public void setImages(Map<String, String> imageMap) { images = new HashMap<>(); for (Map.Entry<String, String> entry: imageMap.entrySet()) { final Image image = loadImage(entry.getValue()); images.put(entry.getKey(), image); } getImageDimensions(); } private Image loadImage(String imageName) { try { BufferedImage originalImage = ImageIO.read(new File(getClass().getResource(imageName).toURI())); return resize(this.scale, originalImage); } catch (Exception e) { throw new RuntimeException("Failed to load image: " + imageName); } } protected void getImageDimensions() { final String key = animationState + "_" + direction; final Image img = (images != null && images.size() > 0) ? images.get(key) : image; size.setSize(img.getWidth(null), img.getHeight(null)); } public void setScale(int factor) { this.scale = factor; } public void setSpeed(int speed) { this.speed = speed; } }
package cassandra import com.datastax.spark.connector.cql.CassandraConnector import com.datastax.spark.connector.{SomeColumns, _} import org.apache.spark.SparkConf import scala.collection.immutable.HashMap import scala.util.Random object CassandraOperations { def createKeyspace(sparkConf: SparkConf, map: HashMap[String, String]): Unit = { try { CassandraConnector(sparkConf).withSessionDo { session => session.execute("CREATE KEYSPACE IF NOT EXISTS sparktest WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor': 1 }") } } catch { case e: Exception => println("exception caught: " + e); } } def createMetricTable(sparkConf: SparkConf): Unit = { try { CassandraConnector(sparkConf).withSessionDo { session => session.execute("CREATE TABLE IF NOT EXISTS sparktest.metric (period int, rollup int, tenant text, path text, time bigint, data list<double>, " + "PRIMARY KEY ((tenant, period, rollup, path), time))") } } catch { case e: Exception => println("exception caught: " + e); } } def createMetrics(sparkConf: SparkConf): Unit = { case class Metric(tenant: String, period: Int, rollup: Int, path: String, time: BigInt, data: List[Double]) val sc = new <API key>().getContext("local", "sparktest", sparkConf) var i = 0 var values = scala.collection.mutable.Seq.empty[Metric] while (i < 100) { val path = Random.alphanumeric.take(5).mkString val randomData = Random.nextDouble() val value = scala.collection.mutable.Seq(Metric("", 60, i, path, i, List(randomData))) values = values ++ value i = i + 1 } val collection = sc.parallelize(values) collection.saveToCassandra("sparktest", "metric", SomeColumns("tenant", "period", "rollup", "path", "time", "data")) sc.stop() } def readMetrics(sparkConf: SparkConf): Unit = { case class Metrics(tenant: String, period: Int, rollup: Int, path: String, time: BigInt, data: List[Double]) val sc = new <API key>().getContext("local", "sparktest", sparkConf) var metrics = sc.cassandraTable("sparktest", "metric") metrics.foreach(println) sc.stop() } def filterByMetrics(sparkConf: SparkConf): Unit = { case class Metrics(tenant: String, period: Int, rollup: Int, path: String, time: BigInt, data: List[Double]) val sc = new <API key>().getContext("local", "sparktest", sparkConf) var metrics = sc.cassandraTable("sparktest", "metric") .select("path", "time", "data", "rollup").filter(row => row.getInt("rollup") == 1) val groupedMetrics = metrics.groupBy(row => row.getInt("rollup")) groupedMetrics.count() var data = groupedMetrics.foreach(row => returnAverage(row._2)) println(data) sc.stop() } def returnAverage(rows: Iterable[CassandraRow]) { println(rows.size) rows.flatMap { g => var values = g.getList[Double]("data") var avg = values.sum / values.size println(avg) values } } }
<?php use yii\db\Schema; use yii\db\Migration; class <API key> extends Migration { public function safeUp() { $this->createTable('cms_block', [ 'id' => $this->primaryKey(), 'group_id' => $this->integer(11)->notNull(), 'class' => $this->string(255)->notNull(), ]); } public function safeDown() { $this->dropTable('createTable'); } }
#!/usr/bin/env python import math amicable_numbers = list() def d(n): sum_of_divisors = 1 # since 1 is always a divisor, no need to check for possible_divisor in range(2, math.floor(math.sqrt(n)) + 2): if n%possible_divisor == 0: sum_of_divisors += possible_divisor sum_of_divisors += int(n/possible_divisor) return sum_of_divisors <API key> = 0 for i in range(1, 10000): if d(d(i)) == i and d(i) != i: <API key> += i print(<API key>)
// <API key>.h // QRCodeScanDemo #import <UIKit/UIKit.h> @interface <API key> : UIViewController @end
#ifndef h2o__time_h #define h2o__time_h #include <time.h> #if defined( __cplusplus) && !defined(__c_as_cpp) extern "C" { #endif #define <API key> (sizeof("Sun, 06 Nov 1994 08:49:37 GMT") - 1) #define H2O_TIMESTR_LOG_LEN (sizeof("29/Aug/2014:15:34:38 +0900") - 1) /** * builds a RFC-1123 style date string */ void <API key>(char *buf, struct tm *gmt); /** * converts HTTP-date to packed format (or returns UINT64_MAX on failure) */ int <API key>(const char *s, size_t len, struct tm *tm); /** * builds an Apache log-style date string */ void h2o_time2str_log(char *buf, time_t time); #if defined( __cplusplus) && !defined(__c_as_cpp) } #endif #endif
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Scottish Ruby Conference</title> <meta name="author" content="raesene"> <!-- Enable responsive viewport --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif] <!-- Le styles --> <link href="https://raesene.github.io/assets/resources/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="https://raesene.github.io/assets/resources/font-awesome/css/font-awesome.min.css" rel="stylesheet"> <link href="https://raesene.github.io/assets/resources/syntax/syntax.css" rel="stylesheet"> <link href="https://raesene.github.io/assets/css/style.css" rel="stylesheet"> <!-- Le fav and touch icons --> <!-- Update these with your own images <link rel="shortcut icon" href="images/favicon.ico"> <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="images/<API key>.png"> <link rel="apple-touch-icon" sizes="114x114" href="images/<API key>.png"> <link rel="alternate" type="application/rss+xml" title="" href="https://raesene.github.io/feed.xml"> </head> <body> <nav class="navbar navbar-default visible-xs" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#<API key>"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a type="button" class="navbar-toggle nav-link" href="https://github.com/raesene"> <i class="fa fa-github"></i> </a> <a type="button" class="navbar-toggle nav-link" href="https://twitter.com/raesene"> <i class="fa fa-twitter"></i> </a> <a type="button" class="navbar-toggle nav-link" href="mailto:raesene@gmail.com"> <i class="fa fa-envelope"></i> </a> <a class="navbar-brand" href="https://raesene.github.io/"> <img src="https: Raesene's Ramblings </a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="<API key>"> <ul class="nav navbar-nav"> <li class="active"><a href="https://raesene.github.io/">Home</a></li> <li><a href="https://raesene.github.io/categories/index.html">Categories</a></li> <li><a href="https://raesene.github.io/tags/index.html">Tags</a></li> </ul> </div><!-- /.navbar-collapse --> </nav> <!-- nav-menu-dropdown --> <div class="btn-group hidden-xs" id="nav-menu"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-bars"></i> </button> <ul class="dropdown-menu" role="menu"> <li><a href="https://raesene.github.io/"><i class="fa fa-home"></i>Home</a></li> <li><a href="https://raesene.github.io/categories/index.html"><i class="fa fa-folder"></i>Categories</a></li> <li><a href="https://raesene.github.io/tags/index.html"><i class="fa fa-tags"></i>Tags</a></li> <li class="divider"></li> <li><a href="#"><i class="fa fa-arrow-up"></i>Top of Page</a></li> </ul> </div> <div class="col-sm-3 sidebar hidden-xs"> <!-- sidebar.html --> <header class="sidebar-header" role="banner"> <a href="https://raesene.github.io/"> <img src="https: </a> <h3 class="title"> <a href="https://raesene.github.io/">Raesene's Ramblings</a> </h3> </header> <div id="bio" class="text-center"> Security Geek, Penetration Testing, Docker, Ruby, Hillwalking </div> <div id="contact-list" class="text-center"> <ul class="list-unstyled list-inline"> <li> <a class="btn btn-default btn-sm" href="https://github.com/raesene"> <i class="fa fa-github-alt fa-lg"></i> </a> </li> <li> <a class="btn btn-default btn-sm" href="https://twitter.com/raesene"> <i class="fa fa-twitter fa-lg"></i> </a> </li> <li> <a class="btn btn-default btn-sm" href="mailto:raesene@gmail.com"> <i class="fa fa-envelope fa-lg"></i> </a> </li> </ul> <ul id="<API key>" class="list-unstyled list-inline"> <li> <a class="btn btn-default btn-sm" href="https://linkedin.com/in/rorym"> <i class="fa fa-linkedin fa-lg"></i> </a> </li> <li> <a class="btn btn-default btn-sm" href="https://raesene.github.io/feed.xml"> <i class="fa fa-rss fa-lg"></i> </a> </li> </ul> </div> <!-- sidebar.html end --> </div> <div class="col-sm-9 col-sm-offset-3"> <div class="page-header"> <h1>Scottish Ruby Conference </h1> </div> <article> <div class="col-sm-10"> <span class="post-date"> February 15th, 2010 </span> <div class="article_body"> <p>If you've not already heard about it, the <a href="http://<API key>.com/posts"> Scottish Ruby Conference </a> is coming up in March in Edinburgh. There's a really interesting set of presentations lined up for this years conference, and the hardest thing, I reckon, will be picking between the three tracks!<br /> I've been very lucky to get my talk accepted for this years conference, so I'll be talking about "Breaking things with ruby". It sits very nicely for me at the corner of two of my main computing interests. Using ruby and ... well breaking stuff!</p> </div> <hr> <div> <section class="share col-sm-6"> <h4 class="section-title">Share Post</h4> <a class="btn btn-default btn-sm twitter" href="https://twitter.com/share?text=Scottish Ruby Conference&via=raesene" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;"> <i class="fa fa-twitter fa-lg"></i> Twitter </a> <a class="btn btn-default btn-sm facebook" href="https: onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;"> <i class="fa fa-facebook fa-lg"></i> Facebook </a> <a class="btn btn-default btn-sm gplus" onclick="window.open('https://plus.google.com/share?url='+window.location.href, 'google-plus-share', 'width=490,height=530');return false;"> <i class="fa fa-google-plus fa-lg"></i> Google+ </a> </section> <section class="col-sm-6 author"> <img src="https: <h4 class="section-title author-name">raesene</h4> <p class="author-bio">Security Geek, Penetration Testing, Docker, Ruby, Hillwalking</p> </section> </div> <div class="clearfix"></div> <ul class="pager"> <li class="previous"><a href="https://raesene.github.io/blog/2010/01/04/ruby_ssl_checke/" title="Ruby SSL Checker">&larr; Previous</a></li> <li class="next"><a href="https://raesene.github.io/blog/2010/03/26/scottish_ruby_c_1/" title="Scottish Ruby Conference & Breaking things with Ruby">Next &rarr;</a></li> </ul> <hr> </div> <div class="col-sm-2 sidebar-2"> </div> </article> <div class="clearfix"></div> <footer> <hr/> <p> &copy; 2022 raesene with Jekyll. Theme: <a href="https://github.com/dbtek/dbyll">dbyll</a> by dbtek. </p> </footer> </div> <script type="text/javascript" src="https://raesene.github.io/assets/resources/jquery/jquery.min.js"></script> <script type="text/javascript" src="https://raesene.github.io/assets/resources/bootstrap/js/bootstrap.min.js"></script> <script type="text/javascript" src="https://raesene.github.io/assets/js/app.js"></script> </body> </html>
require 'spec_helper' RSpec.describe <API key> do describe "validations" do it { should <API key>(:name) } it { should <API key>(:email) } it { should <API key>(:presentation_theme) } it { should <API key>(:presentation_title) } it { should <API key>(:<API key>) } it { should <API key>(:<API key>) } end end
// ==UserScript== // @name Java 7 Documentation Redirect // @description Redirects to the Java SE 7 documenation from older pages.
<?php namespace Acme\UserBundle\DataFixtures\ORM; use Acme\UserBundle\Entity\User; use Doctrine\Common\DataFixtures\Doctrine; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; class LoadUserData implements FixtureInterface{ function load(ObjectManager $manager) { $user = new User(); $user->setUsername('admin'); $user->setPlainPassword('adminpass'); $user->setEmail('nikoms@gmail.com'); $user->setEnabled(true); $user->addRole(User::ROLE_SUPER_ADMIN); $manager->persist($user); $user = new User(); $user->setUsername('user'); $user->setPlainPassword('userpass'); $user->setEmail('nicolas@deboose.com'); $user->setEnabled(true); $manager->persist($user); $manager->flush(); } }
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); require(APPPATH.'libraries/api/T_API_Controller.php'); /** * * The Login Controller/Endpoint * * @uses API Controller * @package CodeIgniter * @subpackage Libraries * @category Libraries * @author Bo Thomsen * @version 1.0 */ class API_Login extends T_API_Controller { /** * Methods settings * @var array */ protected $methods = array( "login_post" => array("key" => false) ); /** * This function is called on any request send to this endpoint, * it loads up all the needed files * @since 1.0 * @access public */ public function __construct () { parent::__construct(); } /** * Removes the session data and token */ public function logout_get () { $token = $this->session->userdata("token"); $this->load->model("token_model"); $this->token_model->remove_token($token); $this->session->sess_destroy(); $this->response(array( "status" => true, ), 200); } /** * This endpoint validates the users credidentials and returns a token */ public function login_post () { $this->lang->load("login"); $this->config->load("login"); $this->load->library("auth/login_security"); $this->load->model("user_model"); $username = $this->login_security->check_security($this->post('username')); $password = $this->login_security->check_security($this->post('password')); // If no username and password has been posted, show an error if ( ! $this->post("username") && ! $this->post("password") ) { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 400); } // If no username has been posted, show an error if ( ! $this->post("username") ) { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 400); } // If not password has been posted, shown an error if ( ! $this->post("password") ) { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 400); } if ( is_null($username) || is_null($password) || $password === false || $username === false ) { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 400); } // Check if the user exists if ( ! $this->user_model-><API key>($username) ) { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 400); } $user = $this->user_model->fetch_user_username($username); // Database error has occured or user removed since last check if ( $user === false ) { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 500); } // Check if the username and password match, and is hashed correctly if ( $this->login_security->check($password, $user->password, $user->user_token ,$user->hashing_iterations, $userHash) ) { if ( $user->password != $userHash) { $this->user_model->update_user_by_id($user->id, array( "hashing_iterations" => $this->config->item("hashing_iterations"), "password" => $userHash )); } } else { $this->response(array( "status" => false, "error_messages" => array( $this->lang->line("<API key>") ) ), 403); } $this->load->model("token_model"); // Create the access token $this->token_model->create_token($user->id, $token); // Change the session data $this->session->set_userdata(array( "token" => $token, "user_id" => $user->id, "signed_in_at" => time(), "signed_in" => true )); $this->response(array( "status" => true, "token" => $token ), 200); } }
<?php use Docit\Core\Extensions; $index = Route::get('/', ['as' => 'docit.index', 'uses' => 'DocitController@index']); $document = Route::get('{projectSlug}/{ref?}/{document?}', [ 'as' => 'docit.document', 'uses' => 'DocitController@document' ]); $document->where('document', '(.*)'); if(count(Extensions::<API key>()) > 0) { $document->where('projectSlug', '^((?!' . Extensions::<API key>(true) . ').*?)$'); }
# File: NuGet.psm1 # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # all copies or substantial portions of the Software. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. $here = Split-Path $MyInvocation.MyCommand.Path New-Variable Gall (New-Object Microsoft.VisualStudio.ExtensionManager.VSGalleryEntry) -Option ReadOnly . $(Join-Path $here NuGet.Search-VSIX.ps1) . $(Join-Path $here NuGet.Get-VSIX.ps1) . $(Join-Path $here NuGet.Install-VSIX.ps1) . $(Join-Path $here NuGet.Uninstall-VSIX.ps1) Export-ModuleMember -Function *-* -Alias * -Cmdlet *-* -Variable Gall*
import merge from 'lodash/merge'; import SharpDataList from '../src/components/DataList.vue'; import { shallowMount } from '@vue/test-utils'; describe('DataList', ()=>{ function createWrapper({ ...options }={}) { return shallowMount(SharpDataList, { // language=Vue stubs: { DataListRow: `<div class="<API key>" v-bind="$props"> <template v-for="column in columns"> <slot name="cell" :column="column" /> </template> </div>`, Draggable: `<div class="MOCKED_Draggable"> <slot /> </div>`, }, options, }); } function setReorderActive(wrapper, reorderActive) { const watcherSpy = jest.spyOn(wrapper.vm, '<API key>').mockImplementation(); wrapper.setProps({ reorderActive }); watcherSpy.mockRestore(); } function withDefaultMocks(options={}) { return merge({ computed: { isEmpty: ()=>false, } }, options); } test('mount empty', ()=>{ const wrapper = createWrapper(withDefaultMocks({ computed: { isEmpty: ()=>true, }, slots: { empty: 'Empty text', }, })); expect(wrapper.html()).toMatchSnapshot(); }); test('mount items', ()=>{ const wrapper = createWrapper(withDefaultMocks()); wrapper.setProps({ items: [{ id:1 }], }); expect(wrapper.html()).toMatchSnapshot(); }); test('mount header', ()=>{ const wrapper = createWrapper(withDefaultMocks()); const header = wrapper.find({ ref:'head' }); const columns = [{ key:'col1', label:'col1' }, { key:'col2', label:'col2', sortable: true }]; expect(header.html()).toMatchSnapshot('default'); wrapper.setProps({ columns: [...columns], }); expect(header.html()).toMatchSnapshot('columns'); wrapper.setProps({ columns: [...columns], sort: 'col2', }); expect(header.html()).toMatchSnapshot('sort selected'); wrapper.setProps({ columns: [...columns], sort: 'col2', dir: 'asc', }); expect(header.html()).toMatchSnapshot('sort ascending'); }); test('mount items slot', ()=>{ const wrapper = createWrapper(withDefaultMocks({ scopedSlots: { item: `<div v-bind="props">{{ props.item.text }}</div>`, }, })); wrapper.setProps({ items: [{ id:1, text:'mockedText' }], }); expect(wrapper.html()).toMatchSnapshot(); }); test('mount pagination', ()=>{ const wrapper = createWrapper(withDefaultMocks({ computed: { isEmpty: ()=>true, hasPagination: ()=>true }, })); wrapper.setProps({ totalCount: 10, pageSize: 3, page: 2, }); expect(wrapper.html()).toMatchSnapshot(); }); describe('watch', ()=>{ test('reorderActive', ()=>{ const wrapper = createWrapper(); wrapper.setMethods({ <API key>: jest.fn() }); wrapper.setProps({ reorderActive: true, }); expect(wrapper.vm.<API key>).<API key>(true); }); }); describe('computed', ()=>{ test('hasPagination', ()=>{ const wrapper = createWrapper(); expect(wrapper.vm.hasPagination).toBe(false); wrapper.setProps({ paginated: true, }); expect(wrapper.vm.hasPagination).toBe(false); wrapper.setProps({ paginated: true, totalCount: 10, pageSize: 3, }); expect(wrapper.vm.hasPagination).toBe(true); }); test('draggableOptions', ()=>{ const wrapper = createWrapper(); expect(wrapper.vm.draggableOptions).toEqual({ disabled: true, }); setReorderActive(wrapper, true); expect(wrapper.vm.draggableOptions).toEqual({ disabled: false, }); }); test('currentItems', ()=>{ const wrapper = createWrapper(); wrapper.setProps({ items: [{ label:'item' }], }); expect(wrapper.vm.currentItems).toEqual([{ label:'item' }]); setReorderActive(wrapper, true); wrapper.setData({ reorderedItems: [{ label: 'reorderedItem' }], }); expect(wrapper.vm.currentItems).toEqual([{ label: 'reorderedItem' }]); }); test('isEmpty', ()=>{ const wrapper = createWrapper(); expect(wrapper.vm.isEmpty).toBe(true); wrapper.setProps({ items:[{ id:1 }], }); expect(wrapper.vm.isEmpty).toBe(false); }); }); describe('methods', ()=>{ test('handleItemsChanged', ()=>{ const wrapper = createWrapper(); wrapper.vm.handleItemsChanged('reorderedItems'); expect(wrapper.vm.reorderedItems).toEqual('reorderedItems'); expect(wrapper.emitted('change')[0]).toEqual(['reorderedItems']); }); test('handleSortChanged', ()=>{ let wrapper; wrapper = createWrapper(); wrapper.vm.handleSortClicked('name'); expect(wrapper.emitted('sort-change')[0]).toEqual([{ prop:'name', dir: 'asc' }]); wrapper = createWrapper(); wrapper.setProps({ sort: 'name', dir: 'asc', }); wrapper.vm.handleSortClicked('name'); expect(wrapper.emitted('sort-change')[0]).toEqual([{ prop:'name', dir: 'desc' }]); }); test('handlePageChanged', ()=>{ const wrapper = createWrapper(); wrapper.vm.handlePageChanged(1); expect(wrapper.emitted('page-change')[0]).toEqual([1]); }); test('<API key>', ()=>{ const wrapper = createWrapper(); wrapper.setProps({ items: [{ id:1 }] }); wrapper.vm.<API key>(true); expect(wrapper.vm.reorderedItems).toEqual([{ id:1 }]); wrapper.vm.<API key>(false); expect(wrapper.vm.reorderedItems).toEqual(null); }); }); });
using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.DependencyInjection; using IdentityServer4.<API key>; using Microsoft.AspNetCore.Hosting; using CenoredTIC.Domain.Abstracts.Enums; using CenoredTIC.Core.Configurations.Extensions; using CenoredTIC.Domain.Settings; using CenoredTIC.Core.Utilities; using CenoredTIC.Core.Data; using CenoredTIC.Core.Configurations.Middlewares; using Swashbuckle.AspNetCore.Swagger; using AutoMapper; namespace CenoredTIC.API { public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddEntityFramework(DatabaseType.Online); services.AddMvcCore() .AddAuthorization() .AddJsonFormatters() .AddApiExplorer(); services.AddDependencies(); services.AddAutoMapper(typeof(Startup)); services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new Info { Version = "v1", Title = "CenoredTIC API", }); }); services.AddAuthentication("Bearer") .<API key>(options => { options.Authority = PublishSettings.OnlineAuthServer; options.<API key> = false; options.ApiName = "CenoredTICAPI"; }); } public void Configure(IApplicationBuilder app, IHostingEnvironment env) { if (env.IsDevelopment()) { app.<API key>(); } app.<API key>(); DocumentUtilities.HostingEnvironment = env; //Seed Data app.UseMiddleware(typeof(<API key>)); app.UseAuthentication(); app.UseSwagger(); app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1/swagger.json", "CENORED TIC API V1"); }); app.ApplicationServices.EnsureSeeded(); app.<API key>(); } } }
#pragma once #include "system/Codable.hpp" #include "Common.hpp" /** \brief An animation is a transformation evaluated at each frame and applied to an object. \ingroup Scene */ class Animation { public: /** \brief Frame in which the transformation shoud be applied. */ enum class Frame { MODEL, ///< Model space (right multiplication) WORLD ///< World space (left multiplication) }; /** Apply the animation transformation to the input matrix. \param m the matrix to transform \param fullTime the time elapsed since the beginning of the rendering loop \param frameTime the time elapsed since last frame \return the transformed matrix. */ virtual glm::mat4 apply(const glm::mat4 & m, double fullTime, double frameTime) = 0; /** Apply the animation transformation to the input vector. \param v the vector to transform \param fullTime the time elapsed since the beginning of the rendering loop \param frameTime the time elapsed since last frame \return the transformed matrix. */ virtual glm::vec4 apply(const glm::vec4 & v, double fullTime, double frameTime) = 0; /** Generate a key-values representation of the animation. See decode for the keywords and layout. \return a tuple representing the animation. */ virtual KeyValues encode() const; /** Virtual destructor. */ virtual ~Animation() = default; /** Copy constructor.*/ Animation(const Animation &) = delete; /** Copy assignment. \return a reference to the object assigned to */ Animation & operator=(const Animation &) = delete; /** Move constructor.*/ Animation(Animation &&) = delete; /** Move assignment. \return a reference to the object assigned to */ Animation & operator=(Animation &&) = delete; /** Helper that can instantiate a list of animations of any type from the passed keywords and parameters. \param params a list of key-value tuple containing animations parameters \return a vector of animations */ static std::vector<std::shared_ptr<Animation>> decode(const std::vector<KeyValues> & params); /** Helper that can instantiate a list of key-values tuples that are Codable-compatible from the passed animations. \param anims a vector of animations \return a list of key-value tuple containing animations parameters */ static std::vector<KeyValues> encode(const std::vector<std::shared_ptr<Animation>> & anims); protected: /** Constructor. */ Animation() = default; /** Constructor. \param frame the frame in which the transformation is expressed \param speed the speed of the animation */ Animation(Frame frame, float speed); /** Setup shared animation parameters from a key-value tuple. The expected format is as follows: \verbatim animationtype: speed frame ... \endverbatim (where frame is one of 'world' or 'model'). \param params the parameters tuple \return decoding status */ bool decodeBase(const KeyValues & params); Frame _frame = Frame::WORLD; ///< The frame of transformation. float _speed = 0.0f; ///< Speed of the animation. }; /** \brief Rotate an object around an axis. \ingroup Scene */ class Rotation final : public Animation { public: /** Default constructor. */ Rotation() = default; /** Setup a rotation animation. \param axis the rotation axis \param speed the animation speed \param frame the animation frame */ Rotation(const glm::vec3 & axis, float speed, Frame frame); /** Apply the animation transformation to the input matrix. \param m the matrix to transform \param fullTime the time elapsed since the beginning of the rendering loop \param frameTime the time elapsed since last frame \return the transformed matrix. */ glm::mat4 apply(const glm::mat4 & m, double fullTime, double frameTime) override; /** Apply the animation transformation to the input vector. \param v the vector to transform \param fullTime the time elapsed since the beginning of the rendering loop \param frameTime the time elapsed since last frame \return the transformed matrix. */ glm::vec4 apply(const glm::vec4 & v, double fullTime, double frameTime) override; /** Setup rotation animation parameters from a key-value tuple. The expected format is as follows: \verbatim rotation: speed frame axisX,axisY,axisZ \endverbatim (where frame is one of 'world' or 'model'). \param params the parameters tuple \return decoding status */ bool decode(const KeyValues & params); /** Generate a key-values representation of the animation. See decode for the keywords and layout. \return a tuple representing the animation. */ KeyValues encode() const override; private: glm::vec3 _axis = glm::vec3(1.0f, 0.0f, 0.0f); ///< Rotation axis. }; /** \brief Translate an object back and forth along a direction. \ingroup Scene */ class BackAndForth final : public Animation { public: /** Default constructor. */ BackAndForth() = default; /** Setup a back and forth animation. \param axis the translation direction \param speed the animation speed \param amplitude the amplitude of the movement \param frame the animation frame */ BackAndForth(const glm::vec3 & axis, float speed, float amplitude, Frame frame); /** Apply the animation transformation to the input matrix. \param m the matrix to transform \param fullTime the time elapsed since the beginning of the rendering loop \param frameTime the time elapsed since last frame \return the transformed matrix. */ glm::mat4 apply(const glm::mat4 & m, double fullTime, double frameTime) override; /** Apply the animation transformation to the input vector. \param v the vector to transform \param fullTime the time elapsed since the beginning of the rendering loop \param frameTime the time elapsed since last frame \return the transformed matrix. */ glm::vec4 apply(const glm::vec4 & v, double fullTime, double frameTime) override; /** Setup back-and-forth translation animation parameters from a key-value tuple. The expected format is as follows: \verbatim backandforth: speed frame axisX,axisY,axisZ amplitude \endverbatim (where frame is one of 'world' or 'model'). \param params the parameters tuple \return decoding status */ bool decode(const KeyValues & params); /** Generate a key-values representation of the animation. See decode for the keywords and layout. \return a tuple representing the animation. */ KeyValues encode() const override; private: glm::vec3 _axis = glm::vec3(1.0f, 0.0f, 0.0f); ///< Translation direction. float _amplitude = 0.0f; ///< Amplitude of the translation (maximum distance). double _previousAbscisse = 0.0f; ///< Position on the path at the previous frame. };
/** @module azure-mobile-apps/express/tables/table @description This module provides functionality for configuring features of individual tables with an Azure Mobile App. The returned table object exposes functions for attaching middleware and operation functions, i.e. use, read, read.use, insert, insert.use, etc. These functions populate the middleware and operations properties of the table object, which are then consumed by the attachRoutes module. The router function calls the attachRoutes module and returns a configured router - this is consumed by mobileApp.tables.add. */ var executeOperation = require('../middleware/executeOperation') express = require('express'); /** Creates an instance of a table configuration helper. @param {tableDefinition} definition Additional table options. These properties can also be specified directly on the helper object itself. @returns An object with the members described below. */ module.exports = function (definition) { // exposing table.execute allows users to mount custom middleware before or after execution var table = definition || {}; table.middleware = { }; table.operations = { }; table.execute = express.Router(); table.operation = executeOperation(table.operations); /** Specify middleware to be executed for every request against the table @function use @param {function} middleware - An array or argument list of middleware to execute. This middleware must contain the middleware exposed through table.execute. */ table.use = attachMiddleware('execute'); /** Register a table read logic handler. The property also exposes a use function for specifying middleware for the read operation. Middleware must contain the middleware exposed through table.operation. You can also set authorize/disable properties on this member. @function read @param {module:azure-mobile-apps/express/tables/table~<API key>} handler - A function containing logic to execute each time a table read is performed. @example var table = require('azure-mobile-apps').table(); table.read.authorize = true; table.read.use(customMiddleware, table.operation); table.read(function (context) { // add an additional query operator context.query.where({ property: 'value' }); return context.execute(); }); */ table.read = attachOperation('read'); /** @callback <API key> @param {context} context The current azure-mobile-apps context object */ /** Identical syntax and semantics to the read function, but for update operations. @function update @param {module:azure-mobile-apps/express/tables/table~<API key>} handler - A function containing logic to execute each time a table read is performed. */ table.update = attachOperation('update'); /** Identical syntax and semantics to the read function, but for insert operations. @function insert @param {module:azure-mobile-apps/express/tables/table~<API key>} handler - A function containing logic to execute each time a table insert is performed. */ table.insert = attachOperation('insert'); /** Identical syntax and semantics to the read function, but for delete operations. @function delete @param {module:azure-mobile-apps/express/tables/table~<API key>} handler - A function containing logic to execute each time a table delete is performed. */ table.delete = attachOperation('delete'); /** Identical syntax and semantics to the read function, but for undelete operations. @function undelete @param {module:azure-mobile-apps/express/tables/table~<API key>} handler - A function containing logic to execute each time a table undelete is performed. */ table.undelete = attachOperation('undelete'); return table; // returns a function that populates the table definition object with middleware provided for the operation function attachMiddleware(operation) { return function (middleware) { table.middleware[operation] = table.middleware[operation] || []; Array.prototype.push.apply(table.middleware[operation], arguments); }; } // returns a function that populates the table definition object with the user operation function. includes a .use function as provided by attachMiddleware function attachOperation(operation) { var api = function (handler) { table.operations[operation] = handler; }; // copy existing operation properties to attached operation if (table[operation]) { Object.keys(table[operation]).forEach(function (property) { api[property] = table[operation][property]; }); } api.use = attachMiddleware(operation); return api; } };
<?php if (!defined('THINK_PATH')) exit();?><!DOCTYPE html PUBLIC "- <html xmlns="http: <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="/Public/Admin/Styles/general.css" rel="stylesheet" type="text/css" /> <style type="text/css"> #header-div { background:#278296; border-bottom:1px solid #FFF; } #logo-div { height:50px; float:left; } #submenu-div { height:50px; } #submenu-div ul { margin:3px 20px 0 0; padding:0; float:right; list-style-type:none; } #submenu-div li { float:left; padding:0 10px; margin:3px 0; border-right:1px solid #FFF; } #submenu-div a:visited, #submenu-div a:link { color:#FFF; text-decoration:none; } #submenu-div a:hover { color:#F5C29A; } #loading-div { clear:right; text-align:right; display:block; } #menu-div { background:#80BDCB; font-weight:bold; height:24px; line-height:24px; } #menu-div ul { margin:0; padding:0; list-style-type:none; } #menu-div li { float:left; border-right:1px solid #192E32; border-left:1px solid #BBDDE5; } #menu-div a:visited, #menu-div a:link { display:block; padding:0 20px; text-decoration:none; color:#335B64; background:#9CCBD6; } #menu-div a:hover { color:#000; background:#80BDCB; } #submenu-div a.fix-submenu{ clear:both; margin-left:5px; padding:1px 5px; background:#DDEEF2; color:#278296; } #submenu-div a.fix-submenu:hover{ padding:1px 5px; background:#FFF; color:#278296; } #menu-div li.fix-spacel{ width:30px; border-left:none; } #menu-div li.fix-spacer{ border-right:none; } #send_info { padding:5px 30px 0 0; clear:right; text-align:right; color:#FF9900; width:40%; float:right; } </style> </head> <body> <div id="header-div"> <div id="logo-div" style="bgcolor:#000000;"> <img src="/Public/Admin/Images/ecshop_logo.gif" alt="ECSHOP - power for e-commerce" /> </div> <div id="submenu-div"> <ul> <li><a href="/testTp" target="_blank"></a></li> <li><a href="#" target="main-frame"></a></li> <li style="border-right:none"><a href="#"></a></li> </ul> <div id="send_info"> <a href="#" target="main-frame" class="fix-submenu"></a> <a href="#" target="_top" class="fix-submenu"></a> </div> </div> </div> <div id="menu-div"> <ul> <li class="fix-spacel">&nbsp;</li> <li><a href="/index.php/Admin/Index/main" target="main-frame"></a></li> <li><a href="/index.php/Admin/Goods/goodsList" target="main-frame"></a></li> <li><a href="/index.php/Admin/Order/orderList" target="main-frame"></a></li> <li><a href="/index.php/Admin/Comment/commentList" target="main-frame"></a></li> <li><a href="/index.php/Admin/User/userList" target="main-frame"></a></li> <li class="fix-spacer">&nbsp;</li> </ul> <br class="clear" /> </div> </body> </html>
var gulp = require('gulp'); var paths = require('../paths'); var sourcemaps = require('gulp-sourcemaps'); var concat = require('gulp-concat'); var source = require('vinyl-source-stream'); var buffer = require('vinyl-buffer'); var browserify = require('browserify'); var watchify = require('watchify'); var babel = require('babelify'); function compile(watch) { var bundler = watchify(browserify(paths.js.entry, { debug: true }).transform(babel)); function rebundle() { bundler.bundle() .on('error', function(err) { console.error(err); this.emit('end'); }) .pipe(source('app.js')) .pipe(buffer()) .pipe(sourcemaps.init({ loadMaps: true })) .pipe(sourcemaps.write('./')) .pipe(gulp.dest(paths.dist)); } if (watch) { bundler.on('update', function() { gulp.start('lint'); console.log('-> bundling...'); rebundle(); }); } rebundle(); } export {compile}; gulp.task('build-js', ['lint'], function(){ return compile(); });
//! The elements of an Openstreetmap XML file. //! For now, the types only cotain a limited set of the most important //! attributes. use std::{borrow, hash, str}; use std::collections::{HashMap, HashSet}; An OSM data set. Contains a set each for nodes, ways, and relations. pub struct Osm { nodes: HashSet<Node>, ways: HashSet<Way>, relations: HashSet<Relation>, } impl Osm { pub fn new() -> Self { Osm { nodes: HashSet::new(), ways: HashSet::new(), relations: HashSet::new(), } } pub fn add_node(&mut self, node: Node) -> bool { self.nodes.insert(node) } pub fn add_way(&mut self, way: Way) -> bool { self.ways.insert(way) } pub fn add_relation(&mut self, rel: Relation) -> bool { self.relations.insert(rel) } pub fn into_inner(self) -> (HashSet<Node>, HashSet<Way>, HashSet<Relation>) { (self.nodes, self.ways, self.relations) } } impl Osm { pub fn nodes(&self) -> &HashSet<Node> { &self.nodes } pub fn has_node(&self, id: i64) -> bool { self.nodes.contains(&id) } pub fn get_node(&self, id: i64) -> Option<&Node> { self.nodes.get(&id) } pub fn ways(&self) -> &HashSet<Way> { &self.ways } pub fn has_way(&self, id: i64) -> bool { self.ways.contains(&id) } pub fn get_way(&self, id: i64) -> Option<&Way> { self.ways.get(&id) } pub fn relations(&self) -> &HashSet<Relation> { &self.relations } pub fn relations_mut(&mut self) -> &mut HashSet<Relation> { &mut self.relations } pub fn has_relation(&self, id: i64) -> bool { self.relations.contains(&id) } pub fn get_relation(&self, id: i64) -> Option<&Relation> { self.relations.get(&id) } } pub struct Node { id: i64, lat: f64, lon: f64, tags: Tags, } impl Node { pub fn new(id: i64, lat: f64, lon: f64) -> Self { Node { id: id, lat: lat, lon: lon, tags: Tags::new() } } pub fn set_lat(&mut self, lat: f64) { self.lat = lat } pub fn set_lon(&mut self, lon: f64) { self.lon = lon } pub fn insert_tag(&mut self, key: String, value: String) { self.tags.insert(key, value); } } impl Node { pub fn id(&self) -> i64 { self.id } pub fn lat(&self) -> f64 { self.lat } pub fn lon(&self) -> f64 { self.lon } pub fn tags(&self) -> &Tags { &self.tags } } impl borrow::Borrow<i64> for Node { fn borrow(&self) -> &i64 { &self.id } } impl PartialEq for Node { fn eq(&self, other: &Self) -> bool { self.id == other.id } } impl Eq for Node { } impl hash::Hash for Node { fn hash<H: hash::Hasher>(&self, state: &mut H) { self.id.hash(state) } } pub struct Way { id: i64, nodes: Vec<i64>, tags: Tags, } impl Way { pub fn new(id: i64) -> Self { Way { id: id, nodes: Vec::new(), tags: Tags::new(), } } pub fn push_node(&mut self, id: i64) { self.nodes.push(id) } pub fn insert_tag(&mut self, key: String, value: String) { self.tags.insert(key, value); } } impl Way { pub fn id(&self) -> i64 { self.id } pub fn nodes(&self) -> &[i64] { &self.nodes } pub fn tags(&self) -> &Tags { &self.tags } } impl borrow::Borrow<i64> for Way { fn borrow(&self) -> &i64 { &self.id } } impl PartialEq for Way { fn eq(&self, other: &Self) -> bool { self.id == other.id } } impl Eq for Way { } impl hash::Hash for Way { fn hash<H: hash::Hasher>(&self, state: &mut H) { self.id.hash(state) } } pub struct Relation { id: i64, members: Vec<Member>, tags: Tags, } impl Relation { pub fn new(id: i64) -> Self { Relation { id: id, members: Vec::new(), tags: Tags::new(), } } pub fn push_member(&mut self, member: Member) { self.members.push(member) } pub fn insert_tag(&mut self, key: String, value: String) { self.tags.insert(key, value) } } impl Relation { pub fn id(&self) -> i64 { self.id } pub fn members(&self) -> &[Member] { &self.members } pub fn tags(&self) -> &Tags { &self.tags } pub fn tags_mut(&mut self) ->&mut Tags { &mut self.tags } } impl borrow::Borrow<i64> for Relation { fn borrow(&self) -> &i64 { &self.id } } impl PartialEq for Relation { fn eq(&self, other: &Self) -> bool { self.id == other.id } } impl Eq for Relation { } impl hash::Hash for Relation { fn hash<H: hash::Hasher>(&self, state: &mut H) { self.id.hash(state) } } pub struct Member { mtype: MemberType, id: i64, role: String } impl Member { pub fn new(mtype: MemberType, id: i64, role: String) -> Self { Member { mtype: mtype, id: id, role: role } } } impl Member { pub fn mtype(&self) -> MemberType { self.mtype } pub fn id(&self) -> i64 { self.id } pub fn role(&self) -> &str { &self.role } } #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub enum MemberType { Way, Node, Relation } impl str::FromStr for MemberType { type Err = String; fn from_str(s: &str) -> Result<Self, Self::Err> { match s { "way" => Ok(MemberType::Way), "node" => Ok(MemberType::Node), "relation" => Ok(MemberType::Relation), _ => Err(format!("invalid member type '{}'", s)) } } } pub struct Tags(HashMap<String, String>); impl Tags { pub fn new() -> Self { Tags(HashMap::new()) } pub fn insert(&mut self, key: String, value: String) { self.0.insert(key, value); } pub fn remove(&mut self, key: &str) -> Option<String> { self.0.remove(key) } } impl Tags { pub fn has(&self, key: &str) -> bool { self.0.contains_key(key) } pub fn get(&self, key: &str) -> Option<&str> { self.0.get(key).map(AsRef::as_ref) } }
var path = require('path'), root = __dirname, testConfFolder = path.join(root, 'testConfigFiles'), mainConf = path.join(testConfFolder, 'main.conf.js'), configManager = require('../src/config-manager.js'); configManager.init(mainConf); // A test suite module.exports = { name: 'kea-config benchmark', tests: { 'Get simple key': function () { 'use strict'; var i = configManager.get('web.sessionKey'); }, 'Get deep key': function () { 'use strict'; var i = configManager.get('web.level1.level2.level3.level4.level5'); }, 'Get key with reference': function () { 'use strict'; var i = configManager.get('web.refToProperty'); }, 'Get key with reference and template': function () { 'use strict'; var i = configManager.get('web.refToMongo'); }, 'Get key with deep references': function () { 'use strict'; var i = configManager.get('web.dbConnection'); }, 'Get key with deep references and template': function () { 'use strict'; var i = configManager.get('web.dbConectionStr'); }, 'Set simple key': function () { 'use strict'; configManager.set('web.sessionKey', 'session'); }, 'Set deep key': function () { 'use strict'; configManager.set('web.level1.level2.level3.level4.level5', 'New Deep Value'); } } };
using System; using System.Collections.Generic; using System.Linq; public class Array_Manipulator { public static void Main() { var numbers = Console.ReadLine() .Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries) .Select(int.Parse) .ToList(); var line = Console.ReadLine(); while (!line.Equals("print")) { var command = line.Split(); switch (command[0]) { case "add": numbers = <API key>(numbers, command); break; case "addMany": numbers = <API key>(numbers, command); break; case "contains": <API key>(numbers, command); break; case "remove": numbers = <API key>(numbers, command); break; case "shift": numbers = ShiftElementsInList(numbers, command); break; case "sumPairs": numbers = SumElementsByPairs(numbers); break; } line = Console.ReadLine(); } Console.WriteLine("[" + string.Join(", ", numbers) + "]"); } private static List<int> SumElementsByPairs(List<int> numbers) { var pairsSums = new List<int>(); for (int i = 0; i < numbers.Count; i += 2) { if (numbers.Count > i + 1) { pairsSums.Add(numbers[i] + numbers[i + 1]); } else { pairsSums.Add(numbers[i]); } } numbers = pairsSums; return numbers; } private static List<int> <API key>(List<int> numbers, string[] command) { var index = int.Parse(command[1]); var elements = new int[command.Length - 2]; for (int i = 2; i < command.Length; i++) { var currentElement = int.Parse(command[i]); elements[i - 2] = currentElement; } numbers.InsertRange(index, elements); return numbers; } private static List<int> ShiftElementsInList(List<int> numbers, string[] command) { var rotations = int.Parse(command[1]) % numbers.Count(); return numbers .Skip(rotations) .Concat(numbers.Take(rotations)) .ToList(); } private static List<int> <API key>(List<int> numbers, string[] command) { var index = int.Parse(command[1]); numbers.RemoveAt(index); return numbers; } private static void <API key>(List<int> numbers, string[] command) { var element = int.Parse(command[1]); var index = numbers.IndexOf(element); Console.WriteLine(index); } private static List<int> <API key>(List<int> numbers, string[] command) { var index = int.Parse(command[1]); var element = int.Parse(command[2]); numbers.Insert(index, element); return numbers; } }
export * from './baTournament.service';
<!-- HEADER --> <div data-smart-include="app/layout/partials/header.tpl.html" class="placeholder-header"></div> <!-- END HEADER --> <!-- Left panel : Navigation area --> <!-- Note: This width of the aside area can be adjusted through LESS variables --> <div data-smart-include="app/layout/partials/navigation.tpl.html" class="<API key>"></div> <!-- END NAVIGATION --> <!-- MAIN PANEL --> <div id="main" role="main"> <!-- RIBBON --> <div id="ribbon"> <!-- breadcrumb --> <state-breadcrumbs></state-breadcrumbs> <!-- end breadcrumb --> </div> <!-- END RIBBON --> <div <API key>="content content@app" data-wrap-for="#content"> <div data-ui-view="content" data-autoscroll="false"></div> </div> </div> <!-- END MAIN PANEL --> <!-- PAGE FOOTER --> <div data-smart-include="app/layout/partials/footer.tpl.html"></div> <div data-smart-include="app/layout/shortcut/shortcut.tpl.html"></div> <!-- END PAGE FOOTER -->
<?php class SiteController extends EApiController { public $defaultAction = 'error'; public function actionError() { if ($error = Yii::app()->errorHandler->error) { // just render it for the sake of the example $this->renderJson($error); } } }
module Elastics class ModelsIndices < Indices def initialize(config_path) default = {}.extend Struct::Mergeable (Conf.elastics_models + Conf.<API key>).each do |m| m = eval"::#{m}" if m.is_a?(String) default.deep_merge! m.elastics.default_mapping end replace default.deep_merge(super) end end end
function transform(model, _attrs) { model.layout = model.layout || "Reference"; model.pagetype = "Reference"; if (!model.title) { model.title = model.name[0].value + " " + model.type; } // If toc is not defined in model, read it from __attrs if (_attrs._tocPath && _attrs._tocPath.indexOf("~/") == 0) { _attrs._tocPath = _attrs._tocPath.substring(2); } model.toc_asset_id = model.toc_asset_id || _attrs._tocPath; model.toc_rel = model.toc_rel || _attrs._tocRel; model.platforms = model.platforms || model.platform; model.breadcrumb_path = model.breadcrumb_path || "/toc.html"; if (!model.content_git_url) { model.content_git_url = getContentGitUrl(model, model.newFileRepository); } if (!model.source_url) { model.source_url = getViewSourceHref(model); } if (!model.asset_id) { model.asset_id = getAssetId(model); } // Clean up unused predefined properties model.uid = undefined; model.id = undefined; model.parent = undefined; model.children = undefined; model.href = undefined; model.name = undefined; model.fullName = undefined; model.type = undefined; model.source = undefined; model.documentation = undefined; model.assemblies = undefined; model.namespace = undefined; model.summary = undefined; model.remarks = undefined; model.example = undefined; model.syntax = undefined; model.overridden = undefined; model.exceptions = undefined; model.seealso = undefined; model.see = undefined; model.inheritance = undefined; model.level = undefined; model.implements = undefined; model.inheritedMembers = undefined; model.conceptual = undefined; model.platform = undefined; model.newFileRepository = undefined; model.thread_safety = undefined; model.defined_in = undefined; model.supported_platforms = undefined; model.requirements = undefined; model._docfxVersion = undefined; // For metadata consumed by docs themes, rename with prefix "_op_" var metaForThemes = ["wordCount", "rawTitle"]; for (var index = 0; index < metaForThemes.length; ++index) { var meta = metaForThemes[index]; model["_op_".concat(meta)] = model[meta]; model[meta] = undefined; } return { content: JSON.stringify(model) }; function getContentGitUrl(item, newFileRepository) { if (!item) return ''; if (!item.documentation || !item.documentation.remote) { return getNewFileUrl(item.uid, newFileRepository); } else { return getRemoteUrl(item.documentation.remote, item.documentation.startLine + 1); } } function getViewSourceHref(item) { /* jshint validthis: true */ if (!item || !item.source || !item.source.remote) return ''; return getRemoteUrl(item.source.remote, item.source.startLine - '0' + 1); } function getNewFileUrl(uid, newFileRepository) { // do not support VSO for now if (newFileRepository && newFileRepository.repo) { var repo = newFileRepository.repo; if (repo.substr(-4) === '.git') { repo = repo.substr(0, repo.length - 4); } var path = getGithubUrlPrefix(repo); if (path != '') { path += '/new'; path += '/' + newFileRepository.branch; path += '/' + getOverrideFolder(newFileRepository.path); path += '/new?filename=' + getHtmlId(uid) + '.md'; path += '&value=' + encodeURIComponent(getOverrideTemplate(uid)); } return path; } else { return ''; } } function getOverrideFolder(path) { if (!path) return ""; path = path.replace('\\', '/'); if (path.charAt(path.length - 1) == '/') path = path.substring(0, path.length - 1); return path; } function getHtmlId(input) { return input.replace(/\W/g, '_'); } function getOverrideTemplate(uid) { if (!uid) return ""; var content = ""; content += " content += "uid: " + uid + "\n"; content += "remarks: '*THIS* is remarks overriden in *MARKDOWN* file'\n"; content += " content += "\n"; content += "*Please type below more information about this API:*\n"; content += "\n"; return content; } function getRemoteUrl(remote, startLine) { if (remote && remote.repo) { var repo = remote.repo; if (repo.substr(-4) === '.git') { repo = repo.substr(0, repo.length - 4); } var linenum = startLine ? startLine : 0; if (/https:\/\/.*\.visualstudio\.com\/.*/gi.test(repo)) { // TODO: line not working for vso return repo + '#path=/' + remote.path; } var path = getGithubUrlPrefix(repo); if (path != '') { path += '/blob' + '/' + remote.branch + '/' + remote.path; if (linenum > 0) path += '/#L' + linenum; } return path; } else { return ''; } } function getGithubUrlPrefix(repo) { var regex = /^(?:https?:\/\/)?(?:\S+\@)?(?:\S+\.)?(github\.com(?:\/|:).*)/gi; if (!regex.test(repo)) return ''; return repo.replace(regex, function(match, p1, offset, string) { return 'https://' + p1.replace(':', '/'); }) } function getAssetId(item) { if (!item || !item.uid) return ''; return item.uid; } }
<?php /** * @namespace */ namespace Xhprof\Storage; class Redis extends AbstractStorage implements StorageInterface { /** * @var \Redis */ protected $redis; /** * * @param \Redis $redis */ public function __construct(\Redis $redis) { $this->redis = $redis; } /** * Returns XHProf data given a run id ($run_id) of a given namespace * * @param Mixed $run_id * @param String $namespace * @return Mixed */ public function get($run_id, $namespace) { $key = $this->_getKey($run_id, $type); $data = $this->redis->get($key); if(!$data) { throw new \RuntimeException(sprintf('Could not find key %s', $key)); } return unserialize($data); } /** * Save XHProf data for a profiler run of specified namespace. * * @param Mixed $data * @param String $namespace * @param Mixed $run_id */ public function save($data, $namespace, $run_id = null) { $data = serialize($data); if($run_id === null) { $run_id = $this->_getId($namespace); } $key = $this->_getKey($run_id, $namespace); if(!$this->redis->set($key, $data)) { throw new \RuntimeException(sprintf('Could not insert %s', $key)); } return $run_id; } protected function _getKey($run_id, $namespace) { return sprintf('xhprof:%s:%s', $run_id, $namespace); } }
import { Meteor } from '../../utility/meteor/packages'; import questions from '../../api/questions/collection'; import experts from '../../api/experts/collection'; if (Meteor.settings.private.seedDatabase) { // Questions if (questions.find().count() === 0) { // Car types questions.insert({ label: 'select type', question: 'I like to drive', help: '(Select up to 4 categories)', summary: 'I like to drive', order: 1, mandatory: true, maxAnswersAllowed: 4, matchKey: 'taxonomy.types', matchExclusion: false, availableAnswers: [ { answerId: 'micro', answer: 'Micro Cars', imagePath: '/images/questions/placeholder.png', }, { answerId: 'sports', answer: 'Sports Cars', imagePath: '/images/questions/placeholder.png', }, { answerId: 'peopleHauler', answer: 'People Haulers', imagePath: '/images/questions/placeholder.png', }, { answerId: 'collector', answer: 'Collector Cars', imagePath: '/images/questions/placeholder.png', }, { answerId: 'lame', answer: 'Lame Cars', imagePath: '/images/questions/placeholder.png', }, ], }); // Family size questions.insert({ label: 'select count', question: "I'll be hauling around:", help: '(Select 1 answer)', summary: "I'm hauling around", order: 2, mandatory: true, maxAnswersAllowed: 1, availableAnswers: [ { answerId: '1', answer: '1 person' }, { answerId: '2', answer: '2 people' }, { answerId: '3', answer: '3 people' }, { answerId: '4', answer: '4 people' }, { answerId: '5+', answer: '5 or more people' }, ], }); // Colours questions.insert({ label: 'select colour', question: 'I love the following car colours:', help: '(Select 1 colour)', summary: 'I love cars coloured', order: 3, mandatory: true, maxAnswersAllowed: 1, matchKey: 'taxonomy.colours', matchExclusion: false, availableAnswers: [ { answerId: 'red', answer: 'Red' }, { answerId: 'black', answer: 'Black' }, { answerId: 'blue', answer: 'Blue' }, { answerId: 'green', answer: 'Green' }, ], }); // Make dislikes questions.insert({ label: 'select make', question: "I don't like:", help: '(Select up to 2 makes)', summary: "I don't like cars made by", order: 4, mandatory: false, maxAnswersAllowed: 2, matchKey: 'taxonomy.make', matchExclusion: true, availableAnswers: [ { answerId: 'ford', answer: 'Ford' }, { answerId: 'honda', answer: 'Honda' }, { answerId: 'mercedes', answer: 'Mercedes' }, { answerId: 'kia', answer: 'Kia' }, { answerId: 'bmw', answer: 'BMW' }, { answerId: 'porsche', answer: 'Porsche' }, ], }); // Driving feelings questions.insert({ label: 'enter feelings', question: 'Driving makes me feel:', summary: 'Driving makes me feel', order: 5, mandatory: false, }); } // Experts if (experts.find().count() === 0) { experts.insert({ firstName: 'Jack', lastName: 'Jones', title: 'Auto Awesome Guy', email: 'jackjones@autoawesome.car', phone: '1-800-123-4567', imageUrl: '/images/expert/expert_placeholder.png', chatLink: ' welcomeMessage: "I'm your car expert here at Awesome Auto. I helped hand pick some " + 'of our best cars below.', overviewMessage: "We've put together a few custom recommendations below, based on " + 'your awesome answers. Have any questions with the cars listed ' + "below? Reach out to me anytime - I'm here to help!", sidebarMessage: "Aloha! Looks like I'm your expert! Great news - I can definitely " + 'help you give me money! Haha - just kidding, but seriously; ' + 'I can help (and want your money!).', twitter: 'https://twitter.com/twitter', facebook: 'https: randomSeed: Math.random(), }); experts.insert({ firstName: 'Rick', lastName: 'James', title: 'Lead Auto Awesome Overlord', email: 'rickjames@autoawesome.car', phone: '1-800-123-4567', imageUrl: '/images/expert/expert_placeholder.png', chatLink: ' welcomeMessage: "I'm in charge around here at Awesome Auto, so I know what's up. " + 'I helped my minions get together a few recommendations for you.', overviewMessage: "Normally I don't get involved with these sorts of things, but " + 'I can tell I like you already. Check out our recommendations ' + 'and give me a shout anytime to discuss how we can take your ' + 'money. Haha, just kidding - bit of a dealer joke there.', sidebarMessage: 'Awesome - looks like our friendly robots have paired us up! ' + "Hey, I'm here to help - so ping me anytime. Keep going through the " + "builder and let's get you some awesome products!", twitter: 'https://twitter.com/twitter', facebook: 'https: randomSeed: Math.random(), }); } }
#include "image.h" #include <stdlib.h> #include <assert.h> #include <memory.h> #include <kazmath/vec3.h> static float _occlusion_scale = 1.0f; void <API key>(float s) { _occlusion_scale = s; } heman_image* <API key>(heman_image* heightmap) { assert(heightmap->nbands == 1); int width = heightmap->width; int height = heightmap->height; heman_image* result = heman_image_create(width, height, 3); HEMAN_FLOAT invh = 1.0f / height; HEMAN_FLOAT invw = 1.0f / width; int maxx = width - 1; int maxy = height - 1; kmVec3* normals = (kmVec3*) result->data; int y; #pragma omp parallel for for (y = 0; y < height; y++) { HEMAN_FLOAT v = y * invh; int y1 = MIN(y + 1, maxy); kmVec3 p; kmVec3 px; kmVec3 py; kmVec3* n = normals + y * width; for (int x = 0; x < width; x++, n++) { HEMAN_FLOAT u = x * invw; int x1 = MIN(x + 1, maxx); p.x = u; p.y = v; p.z = *heman_image_texel(heightmap, x, y); px.x = u + invw; px.y = v; px.z = *heman_image_texel(heightmap, x1, y); py.x = u; py.y = v + invh; py.z = *heman_image_texel(heightmap, x, y1); kmVec3Subtract(&px, &px, &p); kmVec3Subtract(&py, &py, &p); kmVec3Cross(n, &px, &py); kmVec3Normalize(n, n); n->y *= -1; } } return result; } heman_image* <API key>(heman_image* heightmap, heman_image* albedo, float occlusion, float diffuse, float diffuse_softening, const float* light_position) { assert(heightmap->nbands == 1); int width = heightmap->width; int height = heightmap->height; heman_image* final = heman_image_create(width, height, 3); heman_image* normals = <API key>(heightmap); heman_image* occ = <API key>(heightmap); if (albedo) { assert(albedo->nbands == 3); assert(albedo->width == width); assert(albedo->height == height); } static float default_pos[] = {-0.5f, 0.5f, 1.0f}; if (!light_position) { light_position = default_pos; } kmVec3* colors = (kmVec3*) final->data; HEMAN_FLOAT invgamma = 1.0f / _gamma; kmVec3 L; L.x = light_position[0]; L.y = light_position[1]; L.z = light_position[2]; kmVec3Normalize(&L, &L); int y; #pragma omp parallel for for (y = 0; y < height; y++) { kmVec3* color = colors + y * width; for (int x = 0; x < width; x++, color++) { kmVec3* N = (kmVec3*) heman_image_texel(normals, x, y); kmVec3Lerp(N, N, &KM_VEC3_POS_Z, diffuse_softening); HEMAN_FLOAT df = 1 - diffuse * (1 - kmClamp(kmVec3Dot(N, &L), 0, 1)); HEMAN_FLOAT of = 1 - occlusion * (1 - *heman_image_texel(occ, x, y)); if (albedo) { *color = *((kmVec3*) heman_image_texel(albedo, x, y)); } else { color->x = color->y = color->z = 1; } color->x = pow(color->x, _gamma); color->y = pow(color->y, _gamma); color->z = pow(color->z, _gamma); kmVec3Scale(color, color, df * of); color->x = pow(color->x, invgamma); color->y = pow(color->y, invgamma); color->z = pow(color->z, invgamma); } } heman_image_destroy(normals); heman_image_destroy(occ); return final; } #define NUM_SCANS (16) #define INV_SCANS (1.0f / 16.0f) static HEMAN_FLOAT azimuth_slope(kmVec3 a, kmVec3 b) { kmVec3 d; kmVec3Subtract(&d, &a, &b); HEMAN_FLOAT x = kmVec3Length(&d); HEMAN_FLOAT y = b.z - a.z; return y / x; } static HEMAN_FLOAT compute_occlusion(kmVec3 thispt, kmVec3 horizonpt) { kmVec3 direction; kmVec3Subtract(&direction, &horizonpt, &thispt); kmVec3Normalize(&direction, &direction); HEMAN_FLOAT dot = kmVec3Dot(&direction, &KM_VEC3_POS_Z); return atan(MAX(dot, 0.0f)) * TWO_OVER_PI; } static void horizon_scan( heman_image* heightmap, heman_image* result, int* startpts, int dx, int dy) { int w = heightmap->width, h = heightmap->height; int sx = SGN(dx), sy = SGN(dy); int ax = abs(dx), ay = abs(dy); // Generate the start positions for each sweep line. The start positions // occur just outside the image boundary. int nsweeps = ay * w + ax * h - (ax + ay - 1); int* p = startpts; for (int x = -ax; x < w - ax; x++) { for (int y = -ay; y < h - ay; y++) { if (x >= 0 && x < w && y >= 0 && y < h) { continue; } *p++ = (sx < 0) ? (w - x - 1) : x; *p++ = (sy < 0) ? (h - y - 1) : y; } } assert(nsweeps == (p - startpts) / 2); // Compute the number of steps by doing a mock sweep. int pathlen = 0; int i = startpts[0], j = startpts[1]; do { i += dx; j += dy; ++pathlen; } while (i >= 0 && i < w && j >= 0 && j < h); // Each cell in the grid has a certain width and height. These can be // multiplied by row / column indices to get world-space X / Y values, // which are in the same coordinate system as the height values. HEMAN_FLOAT cellw = _occlusion_scale / MAX(w, h); HEMAN_FLOAT cellh = _occlusion_scale / MAX(w, h); // Initialize a stack of candidate horizon points, one for each sweep. In a // serial implementation we wouldn't need to allocate this much memory, but // we're trying to make life easy for multithreading. kmVec3* hull_buffer = malloc(sizeof(kmVec3) * pathlen * nsweeps); // Finally, perform the actual sweeps. We're careful to touch each pixel // exactly once, which makes this embarassingly threadable. int sweep; #pragma omp parallel for for (sweep = 0; sweep < nsweeps; sweep++) { kmVec3* convex_hull = hull_buffer + sweep * pathlen; int* p = startpts + sweep * 2; int i = p[0]; int j = p[1]; kmVec3 thispt, horizonpt; thispt.x = i * cellw; thispt.y = j * cellh; thispt.z = *heman_image_texel(heightmap, EDGE(i, w), EDGE(j, h)); int stack_top = 0; convex_hull[0] = thispt; i += dx, j += dy; while (i >= 0 && i < w && j >= 0 && j < h) { thispt.x = i * cellw; thispt.y = j * cellh; thispt.z = *heman_image_texel(heightmap, i, j); while (stack_top > 0) { HEMAN_FLOAT s1 = azimuth_slope(thispt, convex_hull[stack_top]); HEMAN_FLOAT s2 = azimuth_slope(thispt, convex_hull[stack_top - 1]); if (s1 >= s2) { break; } stack_top } horizonpt = convex_hull[stack_top++]; assert(stack_top < pathlen); convex_hull[stack_top] = thispt; HEMAN_FLOAT occlusion = compute_occlusion(thispt, horizonpt); *heman_image_texel(result, i, j) += INV_SCANS * occlusion; i += dx; j += dy; } } free(hull_buffer); } heman_image* <API key>(heman_image* heightmap) { assert(heightmap->nbands == 1); int width = heightmap->width; int height = heightmap->height; heman_image* result = heman_image_create(width, height, 1); memset(result->data, 0, sizeof(HEMAN_FLOAT) * width * height); // Define sixteen 2D vectors, used for the sweep directions. const int scans[NUM_SCANS * 2] = { 1, 0, 0, 1, -1, 0, 0, -1, // Rook 1, 1, -1, -1, 1, -1, -1, 1, // Bishop 2, 1, 2, -1, -2, 1, -2, -1, 1, 2, 1, -2, -1, 2, -1, -2 // Knight }; // Allocate memory that will store the starting positions of each sweep. int* startpts = malloc(sizeof(int) * 2 * 3 * kmMax(width, height)); // Make each sweep serially, accumulating the result. for (int i = 0; i < NUM_SCANS; i++) { int dx = scans[i * 2]; int dy = scans[i * 2 + 1]; horizon_scan(heightmap, result, startpts, dx, dy); } // Invert the occlusion values and make sure they are valid. for (int i = 0; i < width * height; i++) { result->data[i] = 1.0f - result->data[i]; assert(result->data[i] >= 0.0 && result->data[i] <= 1.0f); } free(startpts); return result; }
// SimpleChart JQuery Plugin // By Robert Haddad (SmokinPuppy) @ 2014 var graph; var c; var xPadding = 30; var yPadding = 30; var xfixer = 0.98; var yfixer = 0.98; var data = [{ values:[ {X:5,Y:50}, {X:10,Y:100} ], color:"red", title:"Red Color", action: "alert('Red Color');" },{ values:[ {X:1,Y:60}, {X:6,Y:70} ], color:"blue", title:"Blue Color", action: "alert('Blue Color');" }]; function isInt(n) { return typeof n === 'number'; } function isFloat(n){ return n % 1 == 0; } function drawAxes(graph,c,maxValX,maxValY,data){ c.lineWidth = 2; c.strokeStyle = '#333'; c.font = 'italic 8pt sans-serif'; c.textAlign = "center"; // Draw the axises c.beginPath(); c.moveTo(xPadding, 0); c.lineTo(xPadding, graph.height - yPadding); c.lineTo(graph.width, graph.height - yPadding); c.stroke(); // Draw the X value texts for(var i = 1; i <= maxValX; i++){ //for(var i = 0; i < data.values.length; i ++) { // uses data.values[i].X //c.fillText(data.values[i].X, getXPixel(data.values[i].X), graph.height - yPadding + 20); c.lineTo(i*xfixer, graph.width); c.fillText(i, getXPixel(i*xfixer,data,graph,maxValX), graph.height - yPadding + 20); } // Draw the Y value texts c.textAlign = "right" c.textBaseline = "middle"; for(var i = 0; i <= 100; i += 10) { c.fillText(i, xPadding - 10, getYPixel(i*yfixer,data,graph,maxValY)); } } function drawGraph(data,graph,c, color,maxValX,maxValY){ c.strokeStyle = color; // Draw the line graph c.beginPath(); c.moveTo(getXPixel(data.values[0].X*xfixer,data,graph,maxValX), getYPixel(data.values[0].Y,data,graph,maxValY)); for(var i = 1; i < data.values.length; i ++) { c.lineTo(getXPixel(data.values[i].X*xfixer,data,graph,maxValX), getYPixel(data.values[i].Y,data,graph,maxValY)); } c.stroke(); // Draw the dots c.fillStyle = color; for(var i = 0; i < data.values.length; i ++) { c.beginPath(); c.arc(getXPixel(data.values[i].X*xfixer,data,graph,maxValX), getYPixel(data.values[i].Y,data,graph,maxValY), 4, 0, Math.PI * 2, true); c.fill(); } } // Returns the max Y value in our data list function getMaxY(data) { var max = 0; for(var i = 0; i < data.values.length; i ++) { if(data.values[i].Y > max) { max = data.values[i].Y; } } max += 10 - max % 10; return max; } // Returns the max X value in our data list function getMaxX(data) { var max = 0; for(var i = 0; i < data.values.length; i ++) { if(data.values[i].X > max) { max = data.values[i].X; } } max += 10 - max % 10; return max; } // Return the x pixel for a graph point function getXPixel(val,data,graph,maxValX) { return ((graph.width - xPadding) / maxValX) * val + (xPadding); } // Return the y pixel for a graph point function getYPixel(val,data,graph,maxValY) { return graph.height - (((graph.height - yPadding) / maxValY) * val) - yPadding; } (function( $ ) { $.fn.SimpleChart = function(options) { var graph, c; // Here are the default options. var settings = $.extend({ // These are the defaults. lineWidth: 2, // Chart Line Width strokeColor: "#333", // Axis Lines Color borderColor: "#333", // Border Color borderWidth: 3, // Border Width backgroundColor: "#FFF", // Background color of chart backgroundImg: "css/jquery.SimpleChart/monthly_grid.png", // Background Image for chart (i.e Grid Layout) data: data, // Default plot title: "Simple Chart", // Default Title of chart titleFontSize: 16, // Title Font size titleColor: "#FFF", // Title Color showTitle: true, // If True show title titleBGColor: '#006', // Title Background Color xTitle: "", // Title of X Axis yTitle: "", // Title of Y Axis xTitleBGColor: '#006', // Title X Axis background Color yTitleBGColor: '#006', // Title Y Axis background Color xFontSize: 16, // X Axis Title Font Size yFontSize: 16, // Y Axis Title Font Size xTitleColor: "#000", // X Axis Title Color yTitleColor: "#000", // Y Axis Title Color maxValX: 12, // Maximum value of data XAxis maxValY: 100, // Maximum value of data YAxis width: 500, // Width of Graph height: 300, // Height of Graph margin: 10, // Margin between each graph showKey: true, // Show chart key toolTip: '' // If set, this will use jQuery Tooltip }, options ); var mainDivId = this.uniqueId(); // Generate Unique ID for container div var titleColor // Generate Bar with Options var useTitle = ""; var useKey = ""; var useBackground = ""; if(settings.showTitle){ useTitle = '<div class="graph_header">' + settings.title + '</div>'; } if(settings.showKey){ useKey = '<div class="graphKey"></div>'; } if(settings.backgroundImg != ""){ useBackground = 'style="background:url(' + settings.backgroundImg + ') no-repeat; background-size: ' + settings.width + 'px ' + settings.height + 'px;"'; } this.append('<div class="graph">' + useTitle + '<div class="YAxis">' + settings.yTitle + ' </div>' + '<canvas width="' + settings.width + '" height="' + settings.height + '" class="main_graph" ' + useBackground + '></canvas>' + '<div class="XAxis">' + settings.xTitle + '</div>' + useKey + '</div>'); // Initiate Tool Tip if(settings.toolTip !== ''){ $(mainDivId.selector).attr('title',settings.toolTip); $(mainDivId.selector).tooltip(); } // Populate Key if(settings.showKey){ var action = ""; for(i in settings.data){ if(typeof(settings.data[i].action) !== 'undefined' && settings.data[i].action !== ''){ action = "onClick=\"" + settings.data[i].action + "\" style=\"cursor:pointer;\""; } $(mainDivId.selector + ' .graphKey').append('<div class="input-color" ' + action + '><div class="color-box" style="background-color:' + settings.data[i].color + ';"></div><div class="name">' + settings.data[i].title + '</div></div>'); } } // Generate CSS from options //Graph $(mainDivId.selector + ' .graph').css({ 'float':'left', 'margin': settings.margin + 'px', 'position': 'relative', 'width': (settings.width + 90) + 'px', 'height': (settings.height + 80) + 'px', 'background': settings.backgroundColor }); // Container this.css({ 'position': 'relative', 'margin':'10px' }); // Graph Header $(mainDivId.selector + ' .graph_header').css({ 'position':'absolute', 'top':'0px', 'left':'0px', 'width': (settings.width + 24) + 'px', 'height':'50px', 'line-height':'50px', 'font':'Georgia, "Times New Roman", Times, serif', 'font-size': settings.titleFontSize + 'px', 'font-weight':'bold', 'text-align':'center', 'border-top': settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'border-left':settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'border-right':settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'color': settings.titleColor, 'background':settings.titleBGColor }); // Main Graph $(mainDivId.selector + ' .main_graph').css({ 'border': settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'position':'absolute', 'top':(50 + settings.borderWidth) + 'px', 'left':'24px', }); // YAxis $(mainDivId.selector + ' .YAxis').css({ 'position':'absolute', 'top': (50 + settings.borderWidth) + 'px', 'left':'0px', 'width':'11px', 'height': (settings.height + 20 + settings.borderWidth) +'px', 'border-left':settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'border-bottom':settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'padding':'5px', 'text-align':'center', 'word-wrap': 'break-word', 'color': settings.yTitleColor, 'background':settings.yTitleBGColor }); // XAxis $(mainDivId.selector + ' .XAxis').css({ 'position':'absolute', 'top': (settings.height + 50 + settings.borderWidth) + 'px', 'left':'24px', 'height': (30 + settings.borderWidth) + 'px', 'line-height':(30 + settings.borderWidth) + 'px', 'width':(settings.width + settings.borderWidth) + 'px', 'text-align':'center', 'border-right':settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'border-bottom':settings.borderColor + ' solid ' + settings.borderWidth + 'px', 'color': settings.xTitleColor, 'background': settings.xTitleBGColor }); //Graph Key Container $(mainDivId.selector + ' .graphKey').css({ 'position':'absolute', 'top': (50 + settings.borderWidth) + 'px', 'right':'0px', 'width':'50px', 'height': (settings.height + 23 + settings.borderWidth) + 'px', }); // Graph Key Color Box $(mainDivId.selector + ' .graphKey .input-color').css({ 'position': 'relative' }); // Graph Key Title Padding $(mainDivId.selector + ' .graphKey .input-color .name').css({ 'padding-left': '20px' }); // Graph Key Color Box $(mainDivId.selector + ' .graphKey .color-box').css({ 'width': '10px', 'height': '10px', 'display': 'inline-block', 'position': 'absolute', 'left': '5px', 'top': '5px', }); graph = $($(this).selector + ' .main_graph')[0]; c = graph.getContext('2d'); drawAxes(graph,c,settings.maxValX,settings.maxValY,settings.data[0]); for(i in settings.data){ drawGraph(settings.data[i],graph,c,settings.data[i].color,settings.maxValX,settings.maxValY); } } }( jQuery ));
body { font-size: 0.9em; font-family: Lucida; } a { color: #3182bd; } .content { width: 990px; margin: 0 auto; border-top: 0px; background-color: #ffffff; overflow: hidden; } .clear { clear: both; }
<?php namespace Hospital\PacienteBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\<API key>; use Symfony\Component\OptionsResolver\<API key>; use Hospital\PacienteBundle\Entity\Ingreso; class PacienteType extends AbstractType { public function buildForm(<API key> $builder, array $options) { $builder->add('expediente','text', [ 'label' => '* Expediente', 'attr' => [ 'placeholder' => 'AI-AN-MN-DN-CC', ], ]) ->add('paterno', 'text', [ 'label' => '* Apellido Paterno', ]) ->add('materno','text', [ 'label' => '* Apellido Materno', ]) ->add('nombre', 'text', [ 'label' => '* Nombre (s)', ]) /*->add('ingresos', 'collection', array( 'type' => new IngresoType(), 'label' => 'Ingresos', 'by_reference' => false, //'prototype' => true, 'allow_delete' => true, 'allow_add' => true, //'attr' => array( // 'class' => 'row ingresos' //) ))*/; //->add('ingreso', new IngresoType()); } public function setDefaultOptions(<API key> $resolver) { $resolver->setDefaults(array( 'data_class' => 'Hospital\PacienteBundle\Entity\Paciente', )); } public function getName() { return 'paciente'; } }
package dvla.common.domain.vehicle_lookup import dvla.common.domain.vehicle_lookup.JsonFormats.<API key> import org.scalatest.{Matchers, WordSpec} import spray.json.pimpString class JsonFormatsSpec extends WordSpec with Matchers { "JsonFormats" should { "successfully unmarshall a valid json vehicle lookup request payload into a request object" in { val expectedRequest = <API key>( <API key>("12345678901"), <API key>("WV54XKW"), "testTraderName" ) val jsonPayload = """{ |"referenceNumber":"12345678901", |"registrationNumber":"WV54XKW", |"userName":"testTraderName" |}""".stripMargin val unmarshalledRequest = jsonPayload.parseJson.convertTo[<API key>] unmarshalledRequest should equal(expectedRequest) } } }
require File.expand_path('../boot', __FILE__) require 'rails/all' Bundler.require(*Rails.groups) require "billing" module Dummy class Application < Rails::Application
package org.jcodings.specific; import org.jcodings.exception.EncodingError; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertArrayEquals; import org.junit.Test; public class TestASCIIEncoding { @Test public void <API key>() { assertEquals(1, ASCIIEncoding.INSTANCE.codeToMbcLength(0xff)); } @Test public void testValidCodeToMbc() { byte[] buffer = new byte[1]; assertEquals(1, ASCIIEncoding.INSTANCE.codeToMbc(0xff, buffer, 0)); assertArrayEquals(new byte[]{ -1 }, buffer); } @Test public void <API key>() { byte[] buffer = new byte[1]; assertEquals(EncodingError.<API key>.getCode(), ASCIIEncoding.INSTANCE.codeToMbc(0x100, buffer, 0)); } }
# escape=` # 0.1.0 FROM microsoft/windowsservercore SHELL ["powershell", "-Command", "$<API key> = 'Stop';"] RUN ` # Install Chocolatey. $env:<API key> = 'false'; ` iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex; ` # Install Psake, .NET Developer Pack 4.6.2. choco install psake -y; ` if ($LASTEXITCODE) { exit $LASTEXITCODE }; RUN cinst <API key> <API key> -y ENTRYPOINT cmd /C WORKDIR C:/Build COPY . C:/Build ENV Version=0.0.0 ` NugetVersion=0.0.0 ` Changeset=0000000 COPY ./Scripts C:/Build/Scripts COPY ./default.ps1 C:/Build/
<?php namespace Gestion\PassBundle\DependencyInjection; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\Config\FileLocator; use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\DependencyInjection\Loader; class <API key> extends Extension { /** * {@inheritDoc} */ public function load(array $configs, ContainerBuilder $container) { $configuration = new Configuration(); $config = $this-><API key>($configuration, $configs); $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); $loader->load('services.yml'); } }
<!DOCTYPE html PUBLIC "- <html xmlns="http: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <META HTTP-EQUIV="CACHE-CONTROL" CONTENT=NO-CACHE""> </head> </head> <body> <?php require 'plugin.php'; GetAdmin(); $sql = mysqli_query($status,"select * from data_sbj") ?> <?php require 'cover.php'; ?> <div id="contain"> <div id="app"> <legend><div class="header">รายชื่อนักเรียนของวิชาเสริม</div></legend> <div class="alert alert-info"><b>วิธีใช้งาน</b> โปรดเลือกแค่ตัวเลือกเดียวเท่านั้น แล้วกดตกลงเพื่อทำการเรียกรายชื่อ</div><br /> <form method="post" class="form-horizontal"> <label class="control-label" for="sbj">วิชาเสริม : </label> <div class="controls"> <select name="sbj"> <option></option><?php while($data = mysqli_fetch_array($sql)){ echo '<option value="'.$data['ID'].'">'.$data['sbj'].'</option>'; }?> </select> </div> <div class="form-actions"> <button type="submit" class="btn btn-primary">ตกลง</button> </div> </form><br /> <!-- database section --> <?php $sbj = $_POST['sbj']; if(!empty($sbj)){ $sql = mysqli_query($status,"select * from sbjenrollment where sbj = '".$sbj."'"); $sql_name = mysqli_query($status,"select data_sbj.sbj from sbjenrollment,data_sbj where sbjenrollment.sbj = '".$sbj."' and data_sbj.ID = '".$sbj."'"); $data_name = mysqli_fetch_array($sql_name); $sbj_name = $data_name['sbj']; echo '<legend><div class="header">วิชาเสริม '.$sbj_name; echo ' <a href="print_sbj.php?sbj='.$sbj.'" target="blank"><font size="10px">[พิมพ์รายชื่อ]</font></a >'; echo '</div></legend>'; ?> <br> <form method="post" class="form-horizontal" onsubmit="return confirm('คุณต้องการลบสมาชิกใช่หรือไม่');"> <table class="table table-bordered"> <tr><td style="width:20px"></td><th width="60%">ชื่อ-นามสกุล</th><th>ชื่อเล่น</th><th>ชั้น</th></tr> <?php while($data = mysqli_fetch_array($sql)){ $id = $data['idUser']; $sql_std = mysqli_query($status,"select * from data_std where user = '$id'"); $data_std = mysqli_fetch_array($sql_std); echo ' <div id="'.$data_std['user'].'" class="modal hide fade in" style="display: none; "> <div class="modal-header"><a class="close" data-dismiss="modal">×</a> <h3>'.$data_std['title'].' '.$data_std['name'].' '.$data_std['surname'].'</h3> </div> <div class="modal-body"> <p> <b>ชื่อเล่น : </b>'.$data_std['nickname'].'<br> <b>เพศ : </b>'.$data_std['sex'].'<br> <b>ชั้น : </b>'.$data_std['class'].'<br> <b>เลขที่(ในห้องเรียน) : </b>'.$data_std['number_class'].'<br> <b>เลขประจำตัวนักเรียน : </b>'.$data_std['number'].'<br> <b>วันเกิด : </b>'.$data_std['birthday'].'<br> <b>ที่อยู่ : </b>'.$data_std['address'].'<br> <b>E-mail : </b>'.$data_std['email'].'<br> <b>เบอร์โทรติดต่อ : </b>'.$data_std['phone'].'<br> </p> </div> <div class="modal-footer"> <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button> </div> </div> '; echo '<tr><td><center><input type="radio" name="remove" value='.$data_std['user'].'></input></center></td>'; echo '<td><a href="#'.$data_std['user'].'" data-toggle="modal">'.$data_std['title'].' '.$data_std['name'].' '.$data_std['surname'].'</a></td>'; echo '<td>'.$data_std['nickname'].'</td>'; echo '<td>'.$data_std['class'].'</td>'; ?></td></tr> <?php } ?> </table><input type="hidden" name="sbj" value="<?php echo $sbj; ?>"> <button type="submit" class="btn btn-danger">ลบ</button> </form> <?php } ?> </div> <?php require 'footer.php'; ?> </div> <?php require 'header.php'; $remove = htmlspecialchars($_POST['remove'] ,ENT_QUOTES); $sbj = htmlspecialchars($_POST['sbj'] ,ENT_QUOTES);; if(!empty($remove)){ echo $sbj; mysqli_query($status,"delete from sbjenrollment where idUser='$remove' and sbj = '$sbj'") or die("Error Sql Database!" . mysqli_error()); $sql = mysqli_query($status,"select * from data_sbj where ID = '$sbj'") or die("Error Sql Database!" . mysqli_error()); $data = mysqli_fetch_array($sql); echo $sbj; if($data['member'] > 0){ $member = $data['member'] - 1; mysqli_query($status,"update data_sbj set member='$member' where ID='$sbj'") or die("Error Sql Database!" . mysqli_error()); echo '<script>alert("ลบสมาชิกสำเร็จแล้ว");</script>'; echo '<script>window.location.href="liststd_sbj.php"</script>'; } else echo '<script>alert("พบข้อผิดพลาด โปรดติดต่อผู้ดูแล");</script>'; } mysqli_close($status); ?> </body> </html>
require "tennis/actor" module Tennis class Fetcher include Actor attr_reader :worker_pool def initialize(worker_pool, options) @job_classes = options[:job_classes] @worker_pool = worker_pool @backend = Tennis.config.backend @done = false end def fetch return if done? if task = @backend.receive(job_classes: @job_classes) worker_pool.async.work(task) else async.fetch end end def done! @done = true end private def done? @done end end end
package com.azure.ai.metricsadvisor.models; import com.azure.core.annotation.Fluent; import java.time.OffsetDateTime; /** * Additional properties to filter result for metric feedback list operations. */ @Fluent public final class <API key> { private DimensionKey dimensionFilter; private FeedbackType feedbackType; private OffsetDateTime startTime; private OffsetDateTime endTime; private <API key> timeMode; /** * Get the dimension filter set on the feedback. * * @return the dimensionFilter value. */ public DimensionKey getDimensionFilter() { return this.dimensionFilter; } /** * Get the type of the metric feedback. * * @return the type of the metric feedback. */ public FeedbackType getFeedbackType() { return this.feedbackType; } /** * Get the start time of the time range within which the alerts were triggered. * * @return The start time. */ public OffsetDateTime getStartTime() { return this.startTime; } /** * Get the end time of the time range within which the alerts were triggered. * * @return The end time. */ public OffsetDateTime getEndTime() { return this.endTime; } /** * Get the feedback query time mode to filter feedback. * * @return The feedback query time mode to filter feedback. */ public <API key> getTimeMode() { return this.timeMode; } /** * Set the feedback dimension filter to filter the feedbacks. * * @param dimensionToFilter the dimensionToFilter value to set. * * @return the <API key> object itself. */ public <API key> setDimensionFilter(DimensionKey dimensionToFilter) { this.dimensionFilter = dimensionToFilter; return this; } /** * Set the feedback type value to filter feedbacks by type. * * @param feedbackType the feedbackType value to set. * * @return the <API key> object itself. */ public <API key> setFeedbackType(FeedbackType feedbackType) { this.feedbackType = feedbackType; return this; } /** * Set the start time filter under chosen time mode. * * @param startTime the startTime value to set. * * @return the <API key> object itself. */ public <API key> setStartTime(OffsetDateTime startTime) { this.startTime = startTime; return this; } /** * Set the end time filter under chosen time mode. * * @param endTime the endTime value to set. * * @return the <API key> object itself. */ public <API key> setEndTime(OffsetDateTime endTime) { this.endTime = endTime; return this; } /** * Set the feedback query time mode to filter feedback. * * @param timeMode the timeMode value to set. * * @return the <API key> object itself. */ public <API key> setTimeMode(<API key> timeMode) { this.timeMode = timeMode; return this; } }
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class <API key> extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('coin_data_codes', function (Blueprint $table) { $table->foreign('coin_data_name_id') ->references('id') ->on('coin_data_names') ->onDelete('cascade'); $table->foreign('<API key>') ->references('id') ->on('coin_data_providers') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('coin_data_codes', function (Blueprint $table) { $table->dropForeign('<API key>'); $table->dropForeign('<API key>'); }); } }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta id="repository-name" content="github.com/calebuharrison/CrystGLFW"> <link href="../css/style.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="../js/doc.js"></script> <title>CrystGLFW::Key - github.com/calebuharrison/CrystGLFW</title> </head> <body> <div id="types-list"> <div id="search-box"> <input type="search" id="search-input" placeholder="Search..."> </div> <ul> <li><a href="../index.html">README</a></li> </ul> <ul> <li class="parent open current" data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW" data-name="crystglfw"> <a href="../CrystGLFW.html">CrystGLFW</a> <ul> <li class="parent " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error" data-name="crystglfw::error"> <a href="../CrystGLFW/Error.html">Error</a> <ul> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/Any" data-name="crystglfw::error::any"> <a href="../CrystGLFW/Error/Any.html">Any</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/APIUnavailable" data-name="crystglfw::error::apiunavailable"> <a href="../CrystGLFW/Error/APIUnavailable.html">APIUnavailable</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/FormatUnavailable" data-name="crystglfw::error::formatunavailable"> <a href="../CrystGLFW/Error/FormatUnavailable.html">FormatUnavailable</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/InvalidEnum" data-name="crystglfw::error::invalidenum"> <a href="../CrystGLFW/Error/InvalidEnum.html">InvalidEnum</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/InvalidValue" data-name="crystglfw::error::invalidvalue"> <a href="../CrystGLFW/Error/InvalidValue.html">InvalidValue</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/<API key>" data-name="crystglfw::error::<API key>"> <a href="../CrystGLFW/Error/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/KeyNotPrintable" data-name="crystglfw::error::keynotprintable"> <a href="../CrystGLFW/Error/KeyNotPrintable.html">KeyNotPrintable</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/NoCurrentContext" data-name="crystglfw::error::nocurrentcontext"> <a href="../CrystGLFW/Error/NoCurrentContext.html">NoCurrentContext</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/NotFullScreen" data-name="crystglfw::error::notfullscreen"> <a href="../CrystGLFW/Error/NotFullScreen.html">NotFullScreen</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/NotInitialized" data-name="crystglfw::error::notinitialized"> <a href="../CrystGLFW/Error/NotInitialized.html">NotInitialized</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/NoWindowContext" data-name="crystglfw::error::nowindowcontext"> <a href="../CrystGLFW/Error/NoWindowContext.html">NoWindowContext</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/OutOfMemory" data-name="crystglfw::error::outofmemory"> <a href="../CrystGLFW/Error/OutOfMemory.html">OutOfMemory</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/PlatformError" data-name="crystglfw::error::platformerror"> <a href="../CrystGLFW/Error/PlatformError.html">PlatformError</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Error/VersionUnavailable" data-name="crystglfw::error::versionunavailable"> <a href="../CrystGLFW/Error/VersionUnavailable.html">VersionUnavailable</a> </li> </ul> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/ErrorCallback" data-name="crystglfw::errorcallback"> <a href="../CrystGLFW/ErrorCallback.html">ErrorCallback</a> </li> <li class="parent " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event" data-name="crystglfw::event"> <a href="../CrystGLFW/Event.html">Event</a> <ul> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/Any" data-name="crystglfw::event::any"> <a href="../CrystGLFW/Event/Any.html">Any</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/<API key>" data-name="crystglfw::event::<API key>"> <a href="../CrystGLFW/Event/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/Modifiers" data-name="crystglfw::event::modifiers"> <a href="../CrystGLFW/Event/Modifiers.html">Modifiers</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/<API key>" data-name="crystglfw::event::<API key>"> <a href="../CrystGLFW/Event/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowChar" data-name="crystglfw::event::windowchar"> <a href="../CrystGLFW/Event/WindowChar.html">WindowChar</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowClose" data-name="crystglfw::event::windowclose"> <a href="../CrystGLFW/Event/WindowClose.html">WindowClose</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/<API key>" data-name="crystglfw::event::<API key>"> <a href="../CrystGLFW/Event/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowCursorMove" data-name="crystglfw::event::windowcursormove"> <a href="../CrystGLFW/Event/WindowCursorMove.html">WindowCursorMove</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowFileDrop" data-name="crystglfw::event::windowfiledrop"> <a href="../CrystGLFW/Event/WindowFileDrop.html">WindowFileDrop</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/<API key>" data-name="crystglfw::event::<API key>"> <a href="../CrystGLFW/Event/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowKey" data-name="crystglfw::event::windowkey"> <a href="../CrystGLFW/Event/WindowKey.html">WindowKey</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowMouseButton" data-name="crystglfw::event::windowmousebutton"> <a href="../CrystGLFW/Event/WindowMouseButton.html">WindowMouseButton</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowMove" data-name="crystglfw::event::windowmove"> <a href="../CrystGLFW/Event/WindowMove.html">WindowMove</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowRefresh" data-name="crystglfw::event::windowrefresh"> <a href="../CrystGLFW/Event/WindowRefresh.html">WindowRefresh</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowResize" data-name="crystglfw::event::windowresize"> <a href="../CrystGLFW/Event/WindowResize.html">WindowResize</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowScroll" data-name="crystglfw::event::windowscroll"> <a href="../CrystGLFW/Event/WindowScroll.html">WindowScroll</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/WindowToggleFocus" data-name="crystglfw::event::windowtogglefocus"> <a href="../CrystGLFW/Event/WindowToggleFocus.html">WindowToggleFocus</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Event/<API key>" data-name="crystglfw::event::<API key>"> <a href="../CrystGLFW/Event/<API key>.html"><API key></a> </li> </ul> </li> <li class="parent " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Joystick" data-name="crystglfw::joystick"> <a href="../CrystGLFW/Joystick.html">Joystick</a> <ul> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Joystick/JoystickCallback" data-name="crystglfw::joystick::joystickcallback"> <a href="../CrystGLFW/Joystick/JoystickCallback.html">JoystickCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Joystick/<API key>" data-name="crystglfw::joystick::<API key>"> <a href="../CrystGLFW/Joystick/<API key>.html"><API key></a> </li> </ul> </li> <li class=" current" data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Key" data-name="crystglfw::key"> <a href="../CrystGLFW/Key.html">Key</a> </li> <li class="parent " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Monitor" data-name="crystglfw::monitor"> <a href="../CrystGLFW/Monitor.html">Monitor</a> <ul> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Monitor/GammaRamp" data-name="crystglfw::monitor::gammaramp"> <a href="../CrystGLFW/Monitor/GammaRamp.html">GammaRamp</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Monitor/MonitorCallback" data-name="crystglfw::monitor::monitorcallback"> <a href="../CrystGLFW/Monitor/MonitorCallback.html">MonitorCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Monitor/<API key>" data-name="crystglfw::monitor::<API key>"> <a href="../CrystGLFW/Monitor/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Monitor/VideoMode" data-name="crystglfw::monitor::videomode"> <a href="../CrystGLFW/Monitor/VideoMode.html">VideoMode</a> </li> </ul> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/MouseButton" data-name="crystglfw::mousebutton"> <a href="../CrystGLFW/MouseButton.html">MouseButton</a> </li> <li class="parent " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window" data-name="crystglfw::window"> <a href="../CrystGLFW/Window.html">Window</a> <ul> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/CharCallback" data-name="crystglfw::window::charcallback"> <a href="../CrystGLFW/Window/CharCallback.html">CharCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/CloseCallback" data-name="crystglfw::window::closecallback"> <a href="../CrystGLFW/Window/CloseCallback.html">CloseCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/Cursor" data-name="crystglfw::window::cursor"> <a href="../CrystGLFW/Window/Cursor.html">Cursor</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/<API key>" data-name="crystglfw::window::<API key>"> <a href="../CrystGLFW/Window/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/CursorMoveCallback" data-name="crystglfw::window::cursormovecallback"> <a href="../CrystGLFW/Window/CursorMoveCallback.html">CursorMoveCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/FileDropCallback" data-name="crystglfw::window::filedropcallback"> <a href="../CrystGLFW/Window/FileDropCallback.html">FileDropCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/<API key>" data-name="crystglfw::window::<API key>"> <a href="../CrystGLFW/Window/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/Image" data-name="crystglfw::window::image"> <a href="../CrystGLFW/Window/Image.html">Image</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/KeyCallback" data-name="crystglfw::window::keycallback"> <a href="../CrystGLFW/Window/KeyCallback.html">KeyCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/MouseButtonCallback" data-name="crystglfw::window::mousebuttoncallback"> <a href="../CrystGLFW/Window/MouseButtonCallback.html">MouseButtonCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/MoveCallback" data-name="crystglfw::window::movecallback"> <a href="../CrystGLFW/Window/MoveCallback.html">MoveCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/RefreshCallback" data-name="crystglfw::window::refreshcallback"> <a href="../CrystGLFW/Window/RefreshCallback.html">RefreshCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/ResizeCallback" data-name="crystglfw::window::resizecallback"> <a href="../CrystGLFW/Window/ResizeCallback.html">ResizeCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/ScrollCallback" data-name="crystglfw::window::scrollcallback"> <a href="../CrystGLFW/Window/ScrollCallback.html">ScrollCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/ToggleFocusCallback" data-name="crystglfw::window::togglefocuscallback"> <a href="../CrystGLFW/Window/ToggleFocusCallback.html">ToggleFocusCallback</a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/<API key>" data-name="crystglfw::window::<API key>"> <a href="../CrystGLFW/Window/<API key>.html"><API key></a> </li> <li class=" " data-id="github.com/calebuharrison/CrystGLFW/CrystGLFW/Window/WindowCallback" data-name="crystglfw::window::windowcallback"> <a href="../CrystGLFW/Window/WindowCallback.html">WindowCallback</a> </li> </ul> </li> </ul> </li> </ul> </div> <div id="main-content"> <h1 class="type-name"> <span class="kind">struct</span> CrystGLFW::Key </h1> <ul class="<API key>"><li class="superclass"><a href="../CrystGLFW/Key.html">CrystGLFW::Key</a></li><li class="superclass">Struct</li><li class="superclass">Value</li><li class="superclass">Object</li></ul> <h2>Overview</h2> <p>A key represents a physical key on the keyboard.</p> <h2>Defined in:</h2> <a href="https://github.com/calebuharrison/CrystGLFW/blob/<SHA1-like>/src/crystglfw/key.cr#L3" target="_blank">crystglfw/key.cr</a> <br/> <h2>Instance Method Summary</h2> <ul class="list-summary"> <li class="entry-summary"> <a href="#code%<API key>" class="signature"><strong>#code</strong> : Int32</a> </li> <li class="entry-summary"> <a href="#is%3F%28%2Alabels%3ASymbol%29%<API key>" class="signature"><strong>#is?</strong>(*labels : Symbol) : Bool</a> <div class="summary"><p>Returns true if the key is referenced by the given label.</p></div> </li> <li class="entry-summary"> <a href="#<API key>" class="signature"><strong>#name</strong></a> <div class="summary"><p>Returns the key's name, if the key is printable.</p></div> </li> <li class="entry-summary"> <a href="#printable%3F%<API key>" class="signature"><strong>#printable?</strong> : Bool</a> <div class="summary"><p>Returns true if the key is considered printable.</p></div> </li> <li class="entry-summary"> <a href="#scancode%<API key>" class="signature"><strong>#scancode</strong> : Int32</a> </li> </ul> <div class="methods-inherited"> </div> <h2>Instance Method Detail</h2> <div class="entry-detail" id="code:<API key>"> <div class="signature"> def <strong>code</strong> : Int32 <a class="method-permalink" href="#code%<API key>">#</a> </div> <br/> <div> [<a href="https://github.com/calebuharrison/CrystGLFW/blob/<SHA1-like>/src/crystglfw/key.cr#L16" target="_blank">View source</a>] </div> </div> <div class="entry-detail" id="is?&#40;*labels:Symbol&#41;:<API key>"> <div class="signature"> def <strong>is?</strong>(*labels : Symbol) : Bool <a class="method-permalink" href="#is%3F%28%2Alabels%3ASymbol%29%<API key>">#</a> </div> <div class="doc"><p>Returns true if the key is referenced by the given label. False otherwise.</p> <pre><code>window.on_key <span class="k">do</span> <span class="o">|</span>key_event<span class="o">|</span> key <span class="o">=</span> key_event.key <span class="k">if</span> key.is? <span class="n">:key_a</span> puts <span class="s">&quot;the &#39;a&#39; key was pressed.&quot;</span> <span class="k">end</span> <span class="k">end</span></code></pre> <p>Also accepts multiple labels and returns true if the key's label matches any of them.</p> <pre><code>window.on_key <span class="k">do</span> <span class="o">|</span>key_event<span class="o">|</span> key <span class="o">=</span> key_event.key <span class="k">if</span> key.is? <span class="n">:key_a</span>, <span class="n">:key_b</span>, <span class="n">:key_c</span> puts <span class="s">&quot;A, B, C&#33;&quot;</span> <span class="k">elsif</span> key.is? <span class="n">:key_1</span>, <span class="n">:key_2</span>, <span class="n">:key_3</span> puts <span class="s">&quot;Easy as 1, 2, 3&#33;&quot;</span> <span class="k">else</span> puts <span class="s">&quot;Uh...do, re, mi?&quot;</span> <span class="k">end</span> <span class="k">end</span></code></pre> <p>This method accepts the following arguments:</p> <ul><li><em>labels</em>, any number of labels against which the key will be checked.</li></ul></div> <br/> <div> [<a href="https://github.com/calebuharrison/CrystGLFW/blob/<SHA1-like>/src/crystglfw/key.cr#L71" target="_blank">View source</a>] </div> </div> <div class="entry-detail" id="<API key>"> <div class="signature"> def <strong>name</strong> <a class="method-permalink" href="#<API key>">#</a> </div> <div class="doc"><p>Returns the key's name, if the key is printable. Otherwise raises an exception.</p> <pre><code><span class="k">if</span> key.printable? puts key.name <span class="c"># prints the key&#39;s name</span> <span class="k">end</span> <span class="t">NOTE</span>: <span class="t">This</span> method must be called from within a <span class="s">&#96;CrystGLFW#run&#96;</span> block definition.</code></pre></div> <br/> <div> [<a href="https://github.com/calebuharrison/CrystGLFW/blob/<SHA1-like>/src/crystglfw/key.cr#L84" target="_blank">View source</a>] </div> </div> <div class="entry-detail" id="printable?:<API key>"> <div class="signature"> def <strong>printable?</strong> : Bool <a class="method-permalink" href="#printable%3F%<API key>">#</a> </div> <div class="doc"><p>Returns true if the key is considered printable. False otherwise.</p> <pre><code>window.on_key <span class="k">do</span> <span class="o">|</span>key_event<span class="o">|</span> key <span class="o">=</span> key_event.key puts key.name <span class="k">if</span> key.printable? <span class="k">end</span></code></pre></div> <br/> <div> [<a href="https://github.com/calebuharrison/CrystGLFW/blob/<SHA1-like>/src/crystglfw/key.cr#L33" target="_blank">View source</a>] </div> </div> <div class="entry-detail" id="scancode:<API key>"> <div class="signature"> def <strong>scancode</strong> : Int32 <a class="method-permalink" href="#scancode%<API key>">#</a> </div> <br/> <div> [<a href="https://github.com/calebuharrison/CrystGLFW/blob/<SHA1-like>/src/crystglfw/key.cr#L17" target="_blank">View source</a>] </div> </div> </div> </body> </html>
// <auto-generated> // This code was generated by a tool. // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> namespace Moonfish.Guerilla.Tags { using Moonfish.Tags; using Moonfish.Model; using System.IO; using System.Collections.Generic; using System.Linq; public partial class <API key> : GuerillaBlock, IWriteQueueable { public <API key> GeometryInfo = new <API key>(); public <API key> GeometryBlockInfo = new <API key>(); public <API key>[] CacheData = new <API key>[0]; public override int SerializedSize { get { return 84; } } public override int Alignment { get { return 4; } } public override System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer> ReadFields(System.IO.BinaryReader binaryReader) { System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer> pointerQueue = new System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer>(base.ReadFields(binaryReader)); pointerQueue = new System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer>(pointerQueue.Concat(this.GeometryInfo.ReadFields(binaryReader))); pointerQueue = new System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer>(pointerQueue.Concat(this.GeometryBlockInfo.ReadFields(binaryReader))); pointerQueue.Enqueue(binaryReader.ReadBlamPointer(68)); return pointerQueue; } public override void ReadInstances(System.IO.BinaryReader binaryReader, System.Collections.Generic.Queue<Moonfish.Tags.BlamPointer> pointerQueue) { base.ReadInstances(binaryReader, pointerQueue); this.GeometryInfo.ReadInstances(binaryReader, pointerQueue); this.GeometryBlockInfo.ReadInstances(binaryReader, pointerQueue); this.CacheData = base.ReadBlockArrayData<<API key>>(binaryReader, pointerQueue.Dequeue()); } public override void QueueWrites(Moonfish.Guerilla.<API key> <API key>) { base.QueueWrites(<API key>); this.GeometryInfo.QueueWrites(<API key>); this.GeometryBlockInfo.QueueWrites(<API key>); <API key>.QueueWrite(this.CacheData); } public override void Write_(Moonfish.Guerilla.<API key> <API key>) { base.Write_(<API key>); this.GeometryInfo.Write_(<API key>); this.GeometryBlockInfo.Write_(<API key>); <API key>.WritePointer(this.CacheData); } } }
The MIT License (MIT) Copyright (c) 2013 Andrew Dryga Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
declare module "<API key>" { declare module.exports: Function; }
<video width="320" height="240" controls> <source [src]="postContent.value.mediaUrl" type="video/mp4"> </video>
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using DynThings.Data.Models; using DynThings.Data.Repositories; using DynThings.Core; using ResultInfo; namespace DynThings.WebPortal.Controllers { public class <API key> : BaseController { <API key> uof_repos = new <API key>(); #region ActionResult: Views public ActionResult Index() { if (<API key>(true,false) == false) { return RedirectToAction("Login", "Account"); } return View(); } public ActionResult Details(long id) { if (<API key>(true, false) == false) { return RedirectToAction("Login", "Account"); } DeviceCommand cmd = uof_repos.repoDeviceCommands.Find(id); return View(cmd); } #endregion #region PartialViewResult: Partial Views #region DetailsPV public PartialViewResult DetailsPV(long id) { DeviceCommand command = uof_repos.repoDeviceCommands.Find(id); return PartialView("_Details_Main", command); } #endregion #region ListPV //Get List All [HttpGet] public PartialViewResult ListPV(string searchfor = null, int page = 1, int recordsperpage = 0) { PagedList.IPagedList cmds = uof_repos.repoDeviceCommands.GetPagedList(searchfor, page, Helpers.Configs.<API key>(recordsperpage)); return PartialView("_List", cmds); } //Get List by DeviceID [HttpGet] public PartialViewResult ListByDeviceIDPV(string searchfor = null,long locationID = 0, long deviceID = 0, int page = 1, int recordsperpage = 0) { PagedList.IPagedList cmds = uof_repos.repoDeviceCommands.GetPagedList(searchfor, deviceID,locationID, page, Helpers.Configs.<API key>(recordsperpage)); return PartialView("_List", cmds); } #endregion #region AddPV [HttpGet] public PartialViewResult AddPV() { ViewBag.DeviceID = new SelectList(uof_repos.repoDevices.GetList(), "ID", "Title"); return PartialView("_Add"); } [HttpPost] [<API key>] public ActionResult AddPV([Bind(Include = "Title,DeviceID,Description,CommandCode")] DeviceCommand command) { Result res = Result.<API key>(); if (ModelState.IsValid) { long cmd = long.Parse(command.DeviceID.ToString()); res = uof_repos.repoDeviceCommands.Add(command.Title, long.Parse(command.DeviceID.ToString()), command.Description, command.CommandCode, "1"); } return Json(res) ; } #endregion #region EditPV [HttpGet] public PartialViewResult EditPV(long id) { DeviceCommand Command = uof_repos.repoDeviceCommands.Find(id); ViewBag.DeviceID = new SelectList(uof_repos.repoDevices.GetList(), "ID", "Title", Command.DeviceID); return PartialView("_Edit", Command); } [HttpPost] [<API key>] public ActionResult EditPV([Bind(Include = "ID,Title,Description,DeviceID,CommandCode")] DeviceCommand Command) { Result res = Result.<API key>(); if (ModelState.IsValid) { res = uof_repos.repoDeviceCommands.Edit(Command.ID, Command.Title, Command.Description, long.Parse(Command.DeviceID.ToString()), Command.CommandCode); return Json(res); } return Json(res); } #endregion #region DeletePV [HttpGet] public PartialViewResult DeletePV(long id) { DeviceCommand Command = uof_repos.repoDeviceCommands.Find(id); ViewBag.DeviceID = new SelectList(uof_repos.repoEndpoints.GetList(), "ID", "Title", Command.DeviceID); return PartialView("_Delete", Command); } [HttpPost] [<API key>] public ActionResult DeletePV([Bind(Include = "ID,Title,Description,DeviceID")] DeviceCommand Command) { Result res = Result.<API key>(); if (ModelState.IsValid) { res = uof_repos.repoDeviceCommands.Detele(Command.ID); return Json(res); } return Json(res); } #endregion #region ExecutePV [HttpGet] public PartialViewResult ExecutePV(long id) { DeviceCommand Command = uof_repos.repoDeviceCommands.Find(id); return PartialView("_Execute", Command); } [HttpPost] [<API key>] public ActionResult ExecutePV([Bind(Include = "ID,DeviceID")] DeviceCommand Command) { Result res = Result.<API key>(); if (ModelState.IsValid) { Device dev = uof_repos.repoDevices.Find((long)Command.DeviceID); res = uof_repos.repoDeviceCommands.Execute(Command.ID, Guid.Parse(dev.KeyPass.ToString()), User.Identity.ToString()); return Json(res); } return Json(res); } #endregion #endregion } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace AdferoVideoDotNet.<API key>.VideoPlayers { public abstract class AdferoPlayers { public const string RcFlashPlayer = "rcflashplayer"; public const string RedBean = "redbean"; } }
import {remap, norm, denorm} from './remap' import assert from 'assert' assert.equal(remap(0, 1, 0, 10, 0.5), 5) assert.equal(remap(-1, 1, -1, 0, 0), -0.5) assert.equal(remap(-100, 100, 10, 20, 123), 21.15) assert.equal(norm(50, 200, 100), 1/3) assert.equal(denorm(50, 200, -0.5), -25) assert.equal(denorm(0, 10, norm(0, 10, 5)), 5) assert.equal(norm(50, 200, denorm(50, 200, 0.1)), 0.1) console.log('Tested ok.')
describe 'Adding Vehicle Properties from a Schema' do let(:schema) { GFFixtures.get_fixture('vehicle') } let(:klass) do vehicle = schema Class.new.instance_eval do include GarbageFactory.model(vehicle) end end describe 'The default variables from a freshly created instance' do subject { klass.new } its(:audio_entertainment) { is_expected.to be false } its(:requires_license) { is_expected.to be true } its(:wheel_count) { is_expected.to eq 2 } end describe 'Initialized variables override the defaults' do let(:params) do { audio_entertainment: true, requires_license: false, wheel_count: 1 } end subject { klass.new(params) } its(:audio_entertainment) { is_expected.to be true } its(:requires_license) { is_expected.to be false } its(:wheel_count) { is_expected.to eq 1 } end end
"use strict"; import React, { Component } from "react"; export default class Tabs extends Component { render() { return ( <div className="tab-group"> {this.props.children} </div> ); } }
<?php namespace Werkstatt\Bundle\FootBundle\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\<API key>; use Symfony\Component\OptionsResolver\<API key>; class GameTeamType extends AbstractType { /** * @param <API key> $builder * @param array $options */ public function buildForm(<API key> $builder, array $options) { $builder ->add('team', 'entity', array( 'class' => 'WerkstattFootBundle:Team', 'property' => 'name', 'multiple' => false, 'empty_value' => 'Choisissez une équpe', 'empty_data' => null, 'required'=>false, ) ) ->add('nbGoals', 'choice', array( 'choices' => range(0,20), 'empty_value' => false) ) ; } /** * @param <API key> $resolver */ public function setDefaultOptions(<API key> $resolver) { $resolver->setDefaults(array( 'data_class' => 'Werkstatt\Bundle\FootBundle\Entity\GameTeam' )); } /** * @return string */ public function getName() { return '<API key>'; } }
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.07.27 at 08:11:57 PM EEST package eu.datex2.schema._1_0._1_0; import java.math.BigInteger; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.<API key>; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HazardousMaterials", propOrder = { "chemicalName", "<API key>", "<API key>", "<API key>", "<API key>", "<API key>", "tremCardNumber", "undgNumber", "<API key>", "<API key>", "<API key>" }) public class HazardousMaterials { @XmlElement(required = true) protected HazardousMaterials.ChemicalName chemicalName; protected Float <API key>; protected <API key> <API key>; protected String <API key>; protected BigInteger <API key>; protected String <API key>; protected String tremCardNumber; @XmlElement(name = "uNDGNumber") protected String undgNumber; protected Float <API key>; protected Float <API key>; protected ExtensionType <API key>; /** * Gets the value of the chemicalName property. * * @return * possible object is * {@link HazardousMaterials.ChemicalName } * */ public HazardousMaterials.ChemicalName getChemicalName() { return chemicalName; } /** * Sets the value of the chemicalName property. * * @param value * allowed object is * {@link HazardousMaterials.ChemicalName } * */ public void setChemicalName(HazardousMaterials.ChemicalName value) { this.chemicalName = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link Float } * */ public Float <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link Float } * */ public void <API key>(Float value) { this.<API key> = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link <API key> } * */ public <API key> <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link <API key> } * */ public void <API key>(<API key> value) { this.<API key> = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link String } * */ public String <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link String } * */ public void <API key>(String value) { this.<API key> = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link BigInteger } * */ public void <API key>(BigInteger value) { this.<API key> = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link String } * */ public String <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link String } * */ public void <API key>(String value) { this.<API key> = value; } /** * Gets the value of the tremCardNumber property. * * @return * possible object is * {@link String } * */ public String getTremCardNumber() { return tremCardNumber; } /** * Sets the value of the tremCardNumber property. * * @param value * allowed object is * {@link String } * */ public void setTremCardNumber(String value) { this.tremCardNumber = value; } /** * Gets the value of the undgNumber property. * * @return * possible object is * {@link String } * */ public String getUNDGNumber() { return undgNumber; } /** * Sets the value of the undgNumber property. * * @param value * allowed object is * {@link String } * */ public void setUNDGNumber(String value) { this.undgNumber = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link Float } * */ public Float <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link Float } * */ public void <API key>(Float value) { this.<API key> = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link Float } * */ public Float <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link Float } * */ public void <API key>(Float value) { this.<API key> = value; } /** * Gets the value of the <API key> property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType <API key>() { return <API key>; } /** * Sets the value of the <API key> property. * * @param value * allowed object is * {@link ExtensionType } * */ public void <API key>(ExtensionType value) { this.<API key> = value; } @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class ChemicalName { @XmlElement(required = true) protected List<HazardousMaterials.ChemicalName.Value> value; /** * Gets the value of the value property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the value property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValue().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link HazardousMaterials.ChemicalName.Value } * * */ public List<HazardousMaterials.ChemicalName.Value> getValue() { if (value == null) { value = new ArrayList<HazardousMaterials.ChemicalName.Value>(); } return this.value; } @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) public static class Value { @XmlValue protected String value; @XmlAttribute(name = "lang") @XmlJavaTypeAdapter(<API key>.class) @XmlSchemaType(name = "language") protected String lang; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } } } }
package edu.rit.cs.csc.recorder.gui; import java.awt.BorderLayout; import java.awt.Container; import java.awt.Dimension; import java.awt.GraphicsEnvironment; import java.awt.GridLayout; import java.awt.<API key>; import java.awt.<API key>; import java.awt.Point; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.WindowEvent; import java.util.Collection; import java.util.HashSet; import java.util.Map; import java.util.Set; import javax.swing.Action; import javax.swing.BorderFactory; import javax.swing.BoxLayout; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing.JComponent; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.KeyStroke; import javax.swing.SpringLayout; import javax.swing.SwingUtilities; import org.eclipse.jdt.annotation.NonNullByDefault; import org.eclipse.jdt.annotation.Nullable; import edu.rit.cs.csc.recorder.Settings; import edu.rit.cs.csc.recorder.features.Feature; //TODO change things to use Action and put all gui operations on the event dispatching thread @NonNullByDefault public class GUI { private final Set<Action> actions = new HashSet<Action>(); //TODO document - Feature collection cannot be null but the Map can be null public GUI(Map<String, Collection<Feature>> options) { // Option groups JPanel middle = new JPanel(); middle.setLayout(new GridLayout(1,1)); for(String title: options.keySet()) { JPanel group = new JPanel(); group.setBorder(BorderFactory.createTitledBorder(title)); group.setLayout(new BoxLayout(group, BoxLayout.PAGE_AXIS)); for(Feature f: options.get(title)) { Action action = f.getAction(); JCheckBox box = new JCheckBox(); box.setAction(action); box.getActionMap().put("shortcut", action); box.getInputMap(JComponent.<API key>).put((KeyStroke)action.getValue(Action.ACCELERATOR_KEY), "shortcut"); actions.add(box.getAction()); group.add(box); } middle.add(group); } // Bottom parts //TOP - location of where to save stats + browse button //Left justified - start time selection? //Left justified - end time selection or length of recording? //Center justified? - start button //Right justified - countdown until start JButton start = new JButton(Settings.StartText); start.setToolTipText(Settings.StartTip); start.addActionListener(new ActionListener() { public void actionPerformed(@Nullable ActionEvent e) { if(e == null) { return; } JButton b = (JButton)e.getSource(); String text = b.getText(); if(Settings.StartText.equals(text)) { //TODO start recording or the timer to start recording //lock button states so the user knows what's being recorded //TODO do we want them to be able to stop recording something if it's taking up too much CPU/memory? for(Action ab: actions) { ab.setEnabled(false); } b.setText(Settings.StopText); b.setToolTipText(Settings.StopTip); } else if(Settings.StopText.equals(text)) { //TODO stop recording or stop the timer that starts recording //unlock button states - FIXME: if a button was dissabled for some other reason, this will still renable it. This is a potential bug. for(Action ab: actions) { ab.setEnabled(true); } b.setText(Settings.StartText); b.setToolTipText(Settings.StartTip); } else { System.err.println("Unmatched button text: " + text); } } }); JPanel bottomPanel = new JPanel(); SpringLayout spring = new SpringLayout(); bottomPanel.setLayout(spring); bottomPanel.add(start); spring.putConstraint(SpringLayout.HORIZONTAL_CENTER, start, 0, SpringLayout.HORIZONTAL_CENTER, bottomPanel); spring.putConstraint(SpringLayout.VERTICAL_CENTER, start, 0, SpringLayout.VERTICAL_CENTER, bottomPanel); bottomPanel.setPreferredSize(new Dimension(30, 50)); spring.layoutContainer(bottomPanel); // Main window final JFrame f = new JFrame(Settings.Title); Container p = f.getContentPane(); p.setLayout(new BorderLayout()); p.add(middle, BorderLayout.CENTER); p.add(bottomPanel, BorderLayout.SOUTH); f.setAlwaysOnTop(Settings.OnTop); f.<API key>(JFrame.EXIT_ON_CLOSE); //center the window f.pack(); if(GraphicsEnvironment.isHeadless()) { f.<API key>(null); } else { Point placement = GraphicsEnvironment.<API key>().getCenterPoint(); int newX = placement.x - (f.getWidth() / 2); int newY = placement.y - (f.getHeight() / 2); if(newX >= 0 && newY >= 0) { f.setLocation(newX, newY); } } //press ESC to close and exit the program <API key>.<API key>().<API key>(new <API key>() { @Override public boolean postProcessKeyEvent(@Nullable KeyEvent e) { if( e != null && e.getKeyCode() != KeyEvent.VK_ESCAPE) { return false; } WindowEvent windowClosing = new WindowEvent(f, WindowEvent.WINDOW_CLOSING); f.dispatchEvent(windowClosing); return true; } }); //TODO allow tray icon SwingUtilities.invokeLater(new Runnable() { @Override public void run() { f.setVisible(true); } }); } }
using SQLite; using System; namespace MidnightBot.DataModels { internal abstract class IDataModel { [PrimaryKey, AutoIncrement] public int? Id { get; set; } [Newtonsoft.Json.JsonProperty ("createdAt")] public DateTime DateAdded { get; set; } = DateTime.Now; public IDataModel () { } } }
from distutils.core import setup import py2exe setup(console=['daemon.py'])
// agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // DESCRIPTION: // This file contains the class AcGeScale3d - a mathematical entity used to // represents scaling transformations in 3-space. // Contract: The scale vector components must never be set to zero // (or near zero within floating point tolerances). #ifndef AC_GESCL3D_H #define AC_GESCL3D_H #include "adesk.h" #include "gegbl.h" #pragma pack (push, 8) class AcGeMatrix3d; class GE_DLLEXPIMPORT AcGeScale3d { public: AcGeScale3d(); AcGeScale3d(const AcGeScale3d& src); AcGeScale3d(double factor); AcGeScale3d(double xFact, double yFact, double zFact); // The identity scaling operation. static const AcGeScale3d kIdentity; // Multiplication. AcGeScale3d operator * (const AcGeScale3d& sclVec) const; AcGeScale3d& operator *= (const AcGeScale3d& scl); AcGeScale3d& preMultBy (const AcGeScale3d& leftSide); AcGeScale3d& postMultBy (const AcGeScale3d& rightSide); AcGeScale3d& setToProduct(const AcGeScale3d& sclVec1, const AcGeScale3d& sclVec2); AcGeScale3d operator * (double s) const; AcGeScale3d& operator *= (double s); AcGeScale3d& setToProduct(const AcGeScale3d& sclVec, double s); friend GE_DLLEXPIMPORT AcGeScale3d operator * (double, const AcGeScale3d& scl); // Multiplicative inverse. AcGeScale3d inverse () const; AcGeScale3d& invert (); Adesk::Boolean isProportional(const AcGeTol& tol = AcGeContext::gTol) const; // Tests for equivalence using the infinity norm. bool operator == (const AcGeScale3d& sclVec) const; bool operator != (const AcGeScale3d& sclVec) const; bool isEqualTo (const AcGeScale3d& scaleVec, const AcGeTol& tol = AcGeContext::gTol) const; // For convenient access to the data. double operator [] (unsigned int i) const; double& operator [] (unsigned int i); AcGeScale3d& set (double sc0, double sc1, double sc2); // Conversion to/from matrix form. operator AcGeMatrix3d () const; void getMatrix(AcGeMatrix3d& mat) const; AcGeScale3d& extractScale ( const AcGeMatrix3d& mat ); AcGeScale3d& removeScale ( AcGeMatrix3d& mat ); // The scale components in x, y and z. double sx, sy, sz; }; ADESK_FORCE_INLINE bool AcGeScale3d::operator == (const AcGeScale3d& s) const { return this->isEqualTo(s); } // This operator is the logical negation of the `==' operator. ADESK_FORCE_INLINE bool AcGeScale3d::operator != (const AcGeScale3d& s) const { return !(this->isEqualTo(s)); } // Indexes the scale vector as if it were an array. `sx' is index `0', // `sy' is index `1' and `sz' is index `2'. ADESK_FORCE_INLINE double AcGeScale3d::operator [] (unsigned int i) const { return *(&sx+i); } ADESK_FORCE_INLINE double& AcGeScale3d::operator [] (unsigned int i) { return *(&sx+i); } #pragma pack (pop) #endif
using System; using System.IO; using System.Threading; using System.Diagnostics.CodeAnalysis; using Renci.SshNet.Common; namespace Renci.SshNet.Sftp { <summary> Exposes a <see cref="Stream"/> around a remote SFTP file, supporting both synchronous and asynchronous read and write operations. </summary> public class SftpFileStream : Stream { // Internal state. private byte[] _handle; private ISftpSession _session; // Buffer information. private readonly int _readBufferSize; private readonly byte[] _readBuffer; private readonly int _writeBufferSize; private readonly byte[] _writeBuffer; private int _bufferPosition; private int _bufferLen; private long _position; private bool _bufferOwnedByWrite; private bool _canRead; private bool _canSeek; private bool _canWrite; private ulong _serverFilePosition; private readonly object _lock = new object(); <summary> Gets a value indicating whether the current stream supports reading. </summary> <returns> <c>true</c> if the stream supports reading; otherwise, <c>false</c>. </returns> public override bool CanRead { get { return _canRead; } } <summary> Gets a value indicating whether the current stream supports seeking. </summary> <returns> <c>true</c> if the stream supports seeking; otherwise, <c>false</c>. </returns> public override bool CanSeek { get { return _canSeek; } } <summary> Gets a value indicating whether the current stream supports writing. </summary> <returns> <c>true</c> if the stream supports writing; otherwise, <c>false</c>. </returns> public override bool CanWrite { get { return _canWrite; } } <summary> Indicates whether timeout properties are usable for <see cref="SftpFileStream"/>. </summary> <value> <c>true</c> in all cases. </value> public override bool CanTimeout { get { return true; } } <summary> Gets the length in bytes of the stream. </summary> <returns>A long value representing the length of the stream in bytes.</returns> <exception cref="<API key>">A class derived from Stream does not support seeking. </exception> <exception cref="<API key>">Methods were called after the stream was closed. </exception> <exception cref="IOException">IO operation failed. </exception> [SuppressMessage("Microsoft.Design", "CA1065:<API key>", Justification = "Be design this is the exception that stream need to throw.")] public override long Length { get { // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); if (!CanSeek) throw new <API key>("Seek operation is not supported."); // Flush the write buffer, because it may // affect the length of the stream. if (_bufferOwnedByWrite) { FlushWriteBuffer(); } // obtain file attributes var attributes = _session.RequestFStat(_handle, true); if (attributes != null) { return attributes.Size; } throw new IOException("Seek operation failed."); } } } <summary> Gets or sets the position within the current stream. </summary> <returns>The current position within the stream.</returns> <exception cref="IOException">An I/O error occurs. </exception> <exception cref="<API key>">The stream does not support seeking. </exception> <exception cref="<API key>">Methods were called after the stream was closed. </exception> public override long Position { get { CheckSessionIsOpen(); if (!CanSeek) throw new <API key>("Seek operation not supported."); return _position; } set { Seek(value, SeekOrigin.Begin); } } <summary> Gets the name of the path that was used to construct the current <see cref="SftpFileStream"/>. </summary> <value> The name of the path that was used to construct the current <see cref="SftpFileStream"/>. </value> public string Name { get; private set; } <summary> Gets the operating system file handle for the file that the current <see cref="SftpFileStream"/> encapsulates. </summary> <value> The operating system file handle for the file that the current <see cref="SftpFileStream"/> encapsulates. </value> public virtual byte[] Handle { get { Flush(); return _handle; } } <summary> Gets or sets the operation timeout. </summary> <value> The timeout. </value> public TimeSpan Timeout { get; set; } internal SftpFileStream(ISftpSession session, string path, FileMode mode, FileAccess access, int bufferSize) { if (session == null) throw new <API key>("Client not connected."); if (path == null) throw new <API key>("path"); if (bufferSize <= 0) throw new <API key>("bufferSize"); Timeout = TimeSpan.FromSeconds(30); Name = path; // Initialize the object state. _session = session; _canRead = (access & FileAccess.Read) != 0; _canSeek = true; _canWrite = (access & FileAccess.Write) != 0; var flags = Flags.None; switch (access) { case FileAccess.Read: flags |= Flags.Read; break; case FileAccess.Write: flags |= Flags.Write; break; case FileAccess.ReadWrite: flags |= Flags.Read; flags |= Flags.Write; break; default: throw new <API key>("access"); } if ((access & FileAccess.Write) == 0) { if (mode == FileMode.Create || mode == FileMode.CreateNew || mode == FileMode.Truncate || mode == FileMode.Append) { throw new ArgumentException(string.Format("Combining {0}: {1} with {2}: {3} is invalid.", typeof(FileMode).Name, mode, typeof(FileAccess).Name, access)); } } switch (mode) { case FileMode.Append: flags |= Flags.Append; break; case FileMode.Create: _handle = _session.RequestOpen(path, flags | Flags.Truncate, true); if (_handle == null) { flags |= Flags.CreateNew; } else { flags |= Flags.Truncate; } break; case FileMode.CreateNew: flags |= Flags.CreateNew; break; case FileMode.Open: break; case FileMode.OpenOrCreate: flags |= Flags.CreateNewOrOpen; break; case FileMode.Truncate: flags |= Flags.Truncate; break; default: throw new <API key>("mode"); } if (_handle == null) _handle = _session.RequestOpen(path, flags); // instead of using the specified buffer size as is, we use it to calculate a buffer size // that ensures we always receive or send the max. number of bytes in a single SSH_FXP_READ // or SSH_FXP_WRITE message _readBufferSize = (int) session.<API key>((uint) bufferSize); _readBuffer = new byte[_readBufferSize]; _writeBufferSize = (int) session.<API key>((uint) bufferSize, _handle); _writeBuffer = new byte[_writeBufferSize]; if (mode == FileMode.Append) { var attributes = _session.RequestFStat(_handle, false); _position = attributes.Size; _serverFilePosition = (ulong) attributes.Size; } } <summary> Releases unmanaged resources and performs other cleanup operations before the <see cref="SftpFileStream"/> is reclaimed by garbage collection. </summary> ~SftpFileStream() { Dispose(false); } <summary> Clears all buffers for this stream and causes any buffered data to be written to the file. </summary> <exception cref="IOException">An I/O error occurs. </exception> <exception cref="<API key>">Stream is closed.</exception> public override void Flush() { lock (_lock) { CheckSessionIsOpen(); if (_bufferOwnedByWrite) { FlushWriteBuffer(); } else { FlushReadBuffer(); } } } <summary> Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. </summary> <param name="buffer">An array of bytes. When this method returns, the buffer contains the specified byte array with the values between <paramref name="offset"/> and (<paramref name="offset"/> + <paramref name="count"/> - 1) replaced by the bytes read from the current source.</param> <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin storing the data read from the current stream.</param> <param name="count">The maximum number of bytes to be read from the current stream.</param> <returns> The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached. </returns> <exception cref="ArgumentException">The sum of <paramref name="offset"/> and <paramref name="count"/> is larger than the buffer length.</exception> <exception cref="<API key>"><paramref name="buffer"/> is <c>null</c>. </exception> <exception cref="<API key>"><paramref name="offset"/> or <paramref name="count"/> is negative.</exception> <exception cref="IOException">An I/O error occurs. </exception> <exception cref="<API key>">The stream does not support reading. </exception> <exception cref="<API key>">Methods were called after the stream was closed. </exception> public override int Read(byte[] buffer, int offset, int count) { var readLen = 0; if (buffer == null) throw new <API key>("buffer"); if (offset < 0) throw new <API key>("offset"); if (count < 0) throw new <API key>("count"); if ((buffer.Length - offset) < count) throw new ArgumentException("Invalid array range."); // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); // Set up for the read operation. SetupRead(); // Read data into the caller's buffer. while (count > 0) { // How much data do we have available in the buffer? var <API key> = _bufferLen - _bufferPosition; if (<API key> <= 0) { _bufferPosition = 0; _bufferLen = 0; var data = _session.RequestRead(_handle, (ulong) _position, (uint) _readBufferSize); // TODO: don't we need to take into account the number of bytes read (data.Length) ? _serverFilePosition = (ulong) _position; if (data.Length == 0) { break; } // determine number of bytes that we can read into caller-provided buffer var <API key> = Math.Min(data.Length, count); // write bytes to caller-provided buffer Buffer.BlockCopy(data, 0, buffer, offset, <API key>); // advance offset to start writing bytes into caller-provided buffer offset += <API key>; // update number of bytes left to read count -= <API key>; // record total number of bytes read into caller-provided buffer readLen += <API key>; // update stream position _position += <API key>; if (data.Length > <API key>) { // copy remaining bytes to read buffer _bufferLen = data.Length - <API key>; Buffer.BlockCopy(data, <API key>, _readBuffer, 0, _bufferLen); } } else { // determine number of bytes that we can write from read buffer to caller-provided buffer var <API key> = Math.Min(<API key>, count); // copy data from read buffer to the caller-provided buffer Buffer.BlockCopy(_readBuffer, _bufferPosition, buffer, offset, <API key>); // update position in read buffer _bufferPosition += <API key>; // advance offset to start writing bytes into caller-provided buffer offset += <API key>; // update number of bytes left to read count -= <API key>; // record total number of bytes read into caller-provided buffer readLen += <API key>; // update stream position _position += <API key>; } } } // Return the number of bytes that were read to the caller. return readLen; } <summary> Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. </summary> <returns> The unsigned byte cast to an <see cref="int"/>, or -1 if at the end of the stream. </returns> <exception cref="<API key>">The stream does not support reading. </exception> <exception cref="<API key>">Methods were called after the stream was closed. </exception> <exception cref="IOException">Read operation failed.</exception> public override int ReadByte() { // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); // Setup the object for reading. SetupRead(); // Read more data into the internal buffer if necessary. if (_bufferPosition >= _bufferLen) { _bufferPosition = 0; var data = _session.RequestRead(_handle, (ulong) _position, (uint) _readBufferSize); _bufferLen = data.Length; _serverFilePosition = (ulong) _position; if (_bufferLen == 0) { // We've reached EOF. return -1; } Buffer.BlockCopy(data, 0, _readBuffer, 0, _bufferLen); } // Extract the next byte from the buffer. ++_position; return _readBuffer[_bufferPosition++]; } } <summary> Sets the position within the current stream. </summary> <param name="offset">A byte offset relative to the <paramref name="origin"/> parameter.</param> <param name="origin">A value of type <see cref="SeekOrigin"/> indicating the reference point used to obtain the new position.</param> <returns> The new position within the current stream. </returns> <exception cref="IOException">An I/O error occurs. </exception> <exception cref="<API key>">The stream does not support seeking, such as if the stream is constructed from a pipe or console output. </exception> <exception cref="<API key>">Methods were called after the stream was closed. </exception> public override long Seek(long offset, SeekOrigin origin) { long newPosn = -1; // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); if (!CanSeek) throw new <API key>("Seek is not supported."); // Don't do anything if the position won't be moving. if (origin == SeekOrigin.Begin && offset == _position) { return offset; } if (origin == SeekOrigin.Current && offset == 0) { return _position; } // The behaviour depends upon the read/write mode. if (_bufferOwnedByWrite) { // Flush the write buffer and then seek. FlushWriteBuffer(); switch (origin) { case SeekOrigin.Begin: newPosn = offset; break; case SeekOrigin.Current: newPosn = _position + offset; break; case SeekOrigin.End: var attributes = _session.RequestFStat(_handle, false); newPosn = attributes.Size - offset; break; } if (newPosn == -1) { throw new <API key>("End of stream."); } _position = newPosn; _serverFilePosition = (ulong)newPosn; } else { // Determine if the seek is to somewhere inside // the current read buffer bounds. if (origin == SeekOrigin.Begin) { newPosn = _position - _bufferPosition; if (offset >= newPosn && offset < (newPosn + _bufferLen)) { _bufferPosition = (int)(offset - newPosn); _position = offset; return _position; } } else if (origin == SeekOrigin.Current) { newPosn = _position + offset; if (newPosn >= (_position - _bufferPosition) && newPosn < (_position - _bufferPosition + _bufferLen)) { _bufferPosition = (int)(newPosn - (_position - _bufferPosition)); _position = newPosn; return _position; } } // Abandon the read buffer. _bufferPosition = 0; _bufferLen = 0; // Seek to the new position. switch (origin) { case SeekOrigin.Begin: newPosn = offset; break; case SeekOrigin.Current: newPosn = _position + offset; break; case SeekOrigin.End: var attributes = _session.RequestFStat(_handle, false); newPosn = attributes.Size - offset; break; } if (newPosn < 0) { throw new <API key>(); } _position = newPosn; } return _position; } } <summary> When overridden in a derived class, sets the length of the current stream. </summary> <param name="value">The desired length of the current stream in bytes.</param> <exception cref="IOException">An I/O error occurs.</exception> <exception cref="<API key>">The stream does not support both writing and seeking, such as if the stream is constructed from a pipe or console output.</exception> <exception cref="<API key>">Methods were called after the stream was closed.</exception> <exception cref="<API key>"><paramref name="value"/> must be greater than zero.</exception> public override void SetLength(long value) { if (value < 0) throw new <API key>("value"); // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); if (!CanSeek) throw new <API key>("Seek is not supported."); SetupWrite(); var attributes = _session.RequestFStat(_handle, false); attributes.Size = value; _session.RequestFSetStat(_handle, attributes); } } <summary> Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. </summary> <param name="buffer">An array of bytes. This method copies <paramref name="count"/> bytes from <paramref name="buffer"/> to the current stream.</param> <param name="offset">The zero-based byte offset in <paramref name="buffer"/> at which to begin copying bytes to the current stream.</param> <param name="count">The number of bytes to be written to the current stream.</param> <exception cref="ArgumentException">The sum of <paramref name="offset"/> and <paramref name="count"/> is greater than the buffer length.</exception> <exception cref="<API key>"><paramref name="buffer"/> is <c>null</c>.</exception> <exception cref="<API key>"><paramref name="offset"/> or <paramref name="count"/> is negative.</exception> <exception cref="IOException">An I/O error occurs.</exception> <exception cref="<API key>">The stream does not support writing.</exception> <exception cref="<API key>">Methods were called after the stream was closed.</exception> public override void Write(byte[] buffer, int offset, int count) { if (buffer == null) throw new <API key>("buffer"); if (offset < 0) throw new <API key>("offset"); if (count < 0) throw new <API key>("count"); if ((buffer.Length - offset) < count) throw new ArgumentException("Invalid array range."); // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); // Setup this object for writing. SetupWrite(); // Write data to the file stream. while (count > 0) { // Determine how many bytes we can write to the buffer. var tempLen = _writeBufferSize - _bufferPosition; if (tempLen <= 0) { // flush write buffer, and mark it empty FlushWriteBuffer(); // we can now write or buffer the full buffer size tempLen = _writeBufferSize; } // limit the number of bytes to write to the actual number of bytes requested if (tempLen > count) { tempLen = count; } // Can we short-cut the internal buffer? if (_bufferPosition == 0 && tempLen == _writeBufferSize) { using (var wait = new AutoResetEvent(false)) { _session.RequestWrite(_handle, _serverFilePosition, buffer, offset, tempLen, wait); _serverFilePosition += (ulong) tempLen; } } else { // No: copy the data to the write buffer first. Buffer.BlockCopy(buffer, offset, _writeBuffer, _bufferPosition, tempLen); _bufferPosition += tempLen; } // Advance the buffer and stream positions. _position += tempLen; offset += tempLen; count -= tempLen; } // If the buffer is full, then do a speculative flush now, // rather than waiting for the next call to this method. if (_bufferPosition >= _writeBufferSize) { using (var wait = new AutoResetEvent(false)) { _session.RequestWrite(_handle, _serverFilePosition, _writeBuffer, 0, _bufferPosition, wait); _serverFilePosition += (ulong) _bufferPosition; } _bufferPosition = 0; } } } <summary> Writes a byte to the current position in the stream and advances the position within the stream by one byte. </summary> <param name="value">The byte to write to the stream.</param> <exception cref="IOException">An I/O error occurs. </exception> <exception cref="<API key>">The stream does not support writing, or the stream is already closed. </exception> <exception cref="<API key>">Methods were called after the stream was closed. </exception> public override void WriteByte(byte value) { // Lock down the file stream while we do this. lock (_lock) { CheckSessionIsOpen(); // Setup the object for writing. SetupWrite(); // Flush the current buffer if it is full. if (_bufferPosition >= _writeBufferSize) { using (var wait = new AutoResetEvent(false)) { _session.RequestWrite(_handle, _serverFilePosition, _writeBuffer, 0, _bufferPosition, wait); _serverFilePosition += (ulong) _bufferPosition; } _bufferPosition = 0; } // Write the byte into the buffer and advance the posn. _writeBuffer[_bufferPosition++] = value; ++_position; } } <summary> Releases the unmanaged resources used by the <see cref="Stream"/> and optionally releases the managed resources. </summary> <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param> protected override void Dispose(bool disposing) { base.Dispose(disposing); if (_session != null) { if (disposing) { lock (_lock) { if (_session != null) { _canRead = false; _canSeek = false; _canWrite = false; if (_handle != null) { if (_session.IsOpen) { if (_bufferOwnedByWrite) { FlushWriteBuffer(); } _session.RequestClose(_handle); } _handle = null; } _session = null; } } } } } <summary> Flushes the read data from the buffer. </summary> private void FlushReadBuffer() { if (_canSeek) { if (_bufferPosition < _bufferLen) { _position -= _bufferPosition; } _bufferPosition = 0; _bufferLen = 0; } } <summary> Flush any buffered write data to the file. </summary> private void FlushWriteBuffer() { if (_bufferPosition > 0) { using (var wait = new AutoResetEvent(false)) { _session.RequestWrite(_handle, _serverFilePosition, _writeBuffer, 0, _bufferPosition, wait); _serverFilePosition += (ulong) _bufferPosition; } _bufferPosition = 0; } } <summary> Setups the read. </summary> private void SetupRead() { if (!CanRead) throw new <API key>("Read not supported."); if (_bufferOwnedByWrite) { FlushWriteBuffer(); _bufferOwnedByWrite = false; } } <summary> Setups the write. </summary> private void SetupWrite() { if ((!CanWrite)) throw new <API key>("Write not supported."); if (!_bufferOwnedByWrite) { FlushReadBuffer(); _bufferOwnedByWrite = true; } } private void CheckSessionIsOpen() { if (_session == null) throw new <API key>(GetType().FullName); if (!_session.IsOpen) throw new <API key>(GetType().FullName, "Cannot access a closed SFTP session."); } } }
<md-dialog aria-label="Show More"> <form ng-cloak> <md-toolbar> <div class="md-toolbar-tools"> <md-icon md-svg-src="{{resource.image}}" class="avatar"></md-icon> <h2>{{element.name | uppercase}}</h2> <span flex></span> <md-button class="md-icon-button" ng-click="cancel()"> <md-icon md-svg-src="images/cancel.svg" aria-label="Close dialog"></md-icon> </md-button> </div> </md-toolbar> <md-dialog-content layout-padding> <div class="md-dialog-content"> <p ng-show="{{element.hasOwnProperty('category')}}">Category: {{element.category}}</p> <p>Description: {{element.description}}</p> </div> </md-dialog-content> <md-dialog-actions layout="row"> <span flex></span> <md-button ng-click="cancel()"> Close </md-button> </md-dialog-actions> </form> </md-dialog>
body { background: #4D84E0;} .reveal { color: #333333; font-weight: normal; font-size: 36px; font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; } ::selection { background: rgba(0, 0, 0, 0.99); color: white; text-shadow: none; } .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 { margin: 0 0 20px 0; color: white; font-weight: 300; font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; } .reveal h2 { margin-bottom: 32px; } .reveal h4 { font-size: 42px; line-height: 52px; } .reveal p, .reveal li { color: white; } .reveal li { padding-bottom: 12px; } .reveal pre { width: 100%; } .reveal pre code { max-height: 460px; word-wrap: break-word; } .reveal blockquote { padding: 25px; color: white; display: block; position: relative; width: 70%; margin: 5px auto; padding: 25px; font-family: "Georgia", Cambria, "Times New Roman", Times, serif; font-weight: normal; font-style: italic; background: none; border: none; box-shadow: none; } .reveal .light-text { color: #dce9ff; } .reveal pre.ionic-blue { box-shadow: none; } .reveal pre.ionic-blue code, .reveal pre.ionic-blue code span { color: white; background: transparent; opacity: 1; } .reveal a:not(.image) { color: #fff; text-decoration: none; -webkit-transition: color .15s ease; -moz-transition: color .15s ease; -ms-transition: color .15s ease; -o-transition: color .15s ease; transition: color .15s ease; } .reveal a:not(.image):hover { border: none; text-shadow: none; color: white; text-decoration: underline; } .reveal .roll span:after { background: #564826; color: #fff; } .reveal section img { margin: 15px 0px; border: 4px solid #333333; background: rgba(255, 255, 255, 0.12); box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -webkit-transition: all .2s linear; -moz-transition: all .2s linear; -ms-transition: all .2s linear; -o-transition: all .2s linear; transition: all .2s linear; } .reveal a:hover img { border-color: #fff; background: rgba(255, 255, 255, 0.2); box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } .reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled { border-right-color: #fff; } .reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled { border-left-color: #fff; } .reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled { border-bottom-color: #fff; } .reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled { border-top-color: #fff; } .reveal .controls div.navigate-left.enabled:hover { border-right-color: #ddd; } .reveal .controls div.navigate-right.enabled:hover { border-left-color: #ddd; } .reveal .controls div.navigate-up.enabled:hover { border-bottom-color: #ddd; } .reveal .controls div.navigate-down.enabled:hover { border-top-color: #ddd; } .reveal .progress { background: rgba(0, 0, 0, 0.2); } .reveal .progress span { background: #fff; -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); -o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } .reveal .slide-number { color: #fff; } .reveal section img.logo { margin-bottom: 50px; border: none; background: none; box-shadow: none; } .reveal .framework-url { margin-bottom: 40px; color: #ddeaff; font-weight: 300; } .col { float: left; width: 50%; } .col.preview { width: 35%;; } .col.code { width: 65%; text-align: left; } .col.code > * { margin-left: 40px; } #sample-video { width: 80%; } .muted { opacity: 0.4; }
#ifndef <API key> #define <API key> namespace rainbow::assets { constexpr unsigned int kLogoWidth = 1128; constexpr unsigned int kLogoHeight = 2204; constexpr char kLogoURI[] = "rainbow://assets/logo.svg"; constexpr uint8_t kLogo[] = R"(<svg xmlns="http: R"(<path style="fill: #fff; fill-rule: evenodd;" d="M1088,<API key>,<API key>.937,313.935l40,40v37.19h-40v-77.19ZM255,931h40v979l-40,40V931Zm-0.062-679.065,40,40v138.19h-40V251.935ZM191,931h40V1974l-40,40V931Zm-0.062-743.065,40,40v256.19h-40V187.935ZM126.969,931h40V2038.03l-40,40V931Zm-0.031-807.064,40,40v394.19h-40V123.936ZM62.969,931h40V2102.03l-40,40V931ZM62.938,59.936l40,40v560.22h-40V59.936ZM1,931.156H0.969V0.062h2.1l37.9,37.9V931H41V2164L1,2204V931.156ZM1026.02,369.977H639v-40H1066.03Zm-64,64.006H639v-40H1002.02Zm-64,64.005H639v-40H938.016Zm-64.006,64.006H639v-40H874.011ZM772,624H639V584H812.005Z"/>)" R"(<path style="fill: none; fill-rule: evenodd; stroke: #fff; stroke-width: 40px;" d="M337,931.5C337,751.179,483.179,604,663.5,604"/>)" R"(<path style="fill: none; fill-rule: evenodd; stroke: #fff; stroke-width: 40px;" d="M275.23,931.5c0-214.436,173.834-389.27,388.27-389.27"/>)" R"(<path style="fill: none; fill-rule: evenodd; stroke: #fff; stroke-width: 40px;" d="M211.013,932c0-250.73,203.257-453.987,453.987-453.987"/>)" R"(<path style="fill: none; fill-rule: evenodd; stroke: #fff; stroke-width: 40px;" d="M147.015,933c0-286.627,232.358-518.985,518.985-518.985"/>)" R"(<path style="fill: none; fill-rule: evenodd; stroke: #fff; stroke-width: 40px;" d="M83.017,934c0-322.525,261.458-583.983,583.983-583.983"/>)" R"(<path style="fill: none; fill-rule: evenodd; stroke: #fff; stroke-width: 40px;" d="M20.984,934c0-356.785,289.231-646.016,646.016-646.016"/>)" R"(</svg>)"; } // namespace rainbow::assets #endif