Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
flutter::EventLoop::Task::Comparer Struct Reference

#include <event_loop.h>

Public Member Functions

bool operator() (const Task &a, const Task &b)
 

Detailed Description

Definition at line 71 of file event_loop.h.

Member Function Documentation

◆ operator()()

bool flutter::EventLoop::Task::Comparer::operator() ( const Task a,
const Task b 
)
inline

Definition at line 72 of file event_loop.h.

72 {
73 if (a.fire_time == b.fire_time) {
74 return a.order > b.order;
75 }
76 return a.fire_time > b.fire_time;
77 }
static bool b
struct MyStruct a[10]

The documentation for this struct was generated from the following file: